summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/constructors/SharedWorker/empty-name.html
blob: 94771d27c9eb5fd5c035a2275ae92e4751e07e76 (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<title>creating a dummy shared worker with explicit name ""</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('empty.js', '');
});
</script>