promise-rejection-events.sharedworker.html (419B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>Promise rejection events tests: in a shared worker context</title> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <link rel="help" href="https://html.spec.whatwg.org/#unhandled-promise-rejections"> 7 8 <script> 9 'use strict'; 10 fetch_tests_from_worker(new SharedWorker('support/promise-rejection-events.js')); 11 </script>