summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/microtasks/checkpoint-after-workerglobalscope-onerror.html
blob: 1932c7183bb10973a8f86d4eaf01c9308d11ccbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<head>
  <meta charset="utf-8">
  <title>Microtask checkpoint after window.onerror events (module)</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script>
  const worker = new Worker(
      "resources/checkpoint-after-error-event-worker.js");
  fetch_tests_from_worker(worker);
  worker.postMessage("foo");
  </script>
</head>