summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/shared-worker-parse-error-failure.html
blob: 3f1b4c5d85f403876f6b562cf09fdc1e1d37ab45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<title>SharedWorker: parse error failure</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="./support/check-error-arguments.js"></script>
<script>

promise_test(async () => {
  const scriptURL = 'modules/resources/syntax-error.js';
  const worker = new SharedWorker(scriptURL, { type: 'classic' });
  const args = await new Promise(resolve =>
      worker.onerror = (...args) => resolve(args));
  window.checkErrorArguments(args);
}, 'Classic shared worker construction for script with syntax error should ' +
   'dispatch an event named error.');

promise_test(async () => {
  const scriptURL = 'modules/resources/static-import-worker.js';
  const worker = new SharedWorker(scriptURL, { type: 'classic' });
  const args = await new Promise(resolve =>
      worker.onerror = (...args) => resolve(args));
  window.checkErrorArguments(args);
}, 'Static import on classic shared worker should dispatch an event named ' +
   'error.');

</script>