promise-rejection-events.dedicatedworker.html (416B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>Promise rejection events tests: in a dedicated 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 Worker('support/promise-rejection-events.js')); 11 </script>