Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

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