blob: 59a449ad7d8758f5fde33070c99c24e611ab41fd [file] [log] [blame]
<!doctype html>
<title>creating a dummy shared worker</title>
<link rel=help href="http://www.whatwg.org/html/#dom-sharedworker">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
const worker = new SharedWorker('dummy-shared-worker.js');
});
</script>