summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/constructors/SharedWorker/number-arguments.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/workers/constructors/SharedWorker/number-arguments.html')
-rw-r--r--testing/web-platform/tests/workers/constructors/SharedWorker/number-arguments.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/web-platform/tests/workers/constructors/SharedWorker/number-arguments.html b/testing/web-platform/tests/workers/constructors/SharedWorker/number-arguments.html
new file mode 100644
index 0000000000..8f90baa898
--- /dev/null
+++ b/testing/web-platform/tests/workers/constructors/SharedWorker/number-arguments.html
@@ -0,0 +1,13 @@
+<!doctype html>
+<title>1 as arguments</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+async_test(t => {
+ const worker = new SharedWorker(1, 1);
+ worker.port.onmessage = t.step_func_done(e => {
+ assert_equals(e.data[0], '1', 'first arg (script name)');
+ assert_equals(e.data[1], '1', 'second arg (worker name)');
+ });
+}, 'Test constructing a shared worker with 1');
+</script>