dummy-name.html (342B)
1 <!doctype html> 2 <title>creating a dummy shared worker with name "foo"</title> 3 <link rel=help href="http://www.whatwg.org/html/#dom-sharedworker"> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <script> 7 test(() => { 8 const worker = new SharedWorker('empty.js', 'foo'); 9 }); 10 </script>