Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<title>creating a dummy shared worker with name "foo"</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
const worker = new SharedWorker('empty.js', 'foo');
});
</script>