empty-name.html (345B)
1 <!doctype html> 2 <title>creating a dummy shared worker with explicit name ""</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', ''); 9 }); 10 </script>