Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /workers/constructors/SharedWorker/dummy-shared-worker.html - WPT Dashboard Interop Dashboard
<!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>