summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/constructors/SharedWorker/interface-objects.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/workers/constructors/SharedWorker/interface-objects.html')
-rw-r--r--testing/web-platform/tests/workers/constructors/SharedWorker/interface-objects.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/workers/constructors/SharedWorker/interface-objects.html b/testing/web-platform/tests/workers/constructors/SharedWorker/interface-objects.html
new file mode 100644
index 0000000000..a8f6998168
--- /dev/null
+++ b/testing/web-platform/tests/workers/constructors/SharedWorker/interface-objects.html
@@ -0,0 +1,20 @@
+<!doctype html>
+<title>expected interface objects/constructors</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+async_test(t => {
+ const expected = 'XMLHttpRequest WebSocket EventSource MessageChannel Worker'.split(' ');
+ const supported = [];
+ for (let i = 0; i < expected.length; ++i) {
+ if (expected[i] in window)
+ supported.push(expected[i]);
+ }
+ const worker = new SharedWorker('interface-objects.js');
+ worker.port.start();
+ worker.port.postMessage(supported);
+ worker.port.onmessage = t.step_func_done(e => {
+ assert_equals(e.data, 'These were missing: ');
+ });
+}, 'Test if interface objects exist in a shared worker');
+</script>