https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a802b1049167b8449b0ceefae4d2ec353c2ae122 authored by Kenichi Ishibashi on 27 March 2018, 03:21:32 UTC
service_worker: Add tests for navigation timing
Tip revision: a802b10
dedicated-worker-options-type.html
<!DOCTYPE html>
<title>DedicatedWorker: WorkerOptions 'type'</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>

promise_test(() => {
  const worker = new Worker('resources/post-message-on-load-worker.js');
  return new Promise(resolve => worker.onmessage = resolve)
      .then(msg_event => assert_equals(msg_event.data, 'LOADED'));
}, 'Test worker construction with the default worker type.');

promise_test(() => {
  const worker = new Worker('resources/post-message-on-load-worker.js',
                            { type: 'classic' });
  return new Promise(resolve => worker.onmessage = resolve)
      .then(msg_event => assert_equals(msg_event.data, 'LOADED'));
}, 'Test worker construction with the "classic" worker type.');

promise_test(() => {
  const worker = new Worker('resources/post-message-on-load-worker.js',
                            { type: 'module' });
  return new Promise(resolve => worker.onmessage = resolve)
      .then(msg_event => assert_equals(msg_event.data, 'LOADED'));
}, 'Test worker construction with the "module" worker type.');

test(() => {
  try {
    new Worker('resources/post-message-on-load-worker.js', { type: '' });
    assert_unreached(
        'Worker construction with an empty type should throw an exception');
  } catch (e) {
    assert_equals(e.name, 'TypeError');
  }
}, 'Test worker construction with an empty worker type.');

test(() => {
  try {
    new Worker('resources/post-message-on-load-worker.js', { type: 'unknown' });
    assert_unreached(
        'Worker construction with an unknown type should throw an exception');
  } catch (e) {
    assert_equals(e.name, 'TypeError');
  }
}, 'Test worker construction with an unknown worker type.');

</script>
back to top