summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wasm/webapi/esm-integration/worker-import-source-phase.tentative.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/wasm/webapi/esm-integration/worker-import-source-phase.tentative.html')
-rw-r--r--testing/web-platform/tests/wasm/webapi/esm-integration/worker-import-source-phase.tentative.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/web-platform/tests/wasm/webapi/esm-integration/worker-import-source-phase.tentative.html b/testing/web-platform/tests/wasm/webapi/esm-integration/worker-import-source-phase.tentative.html
new file mode 100644
index 0000000000..e193f3efc6
--- /dev/null
+++ b/testing/web-platform/tests/wasm/webapi/esm-integration/worker-import-source-phase.tentative.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<title>Testing import of WebAssembly source phase from JavaScript worker</title>
+
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script type=module>
+setup({ single_test: true });
+const worker = new Worker("resources/worker-source-phase.js", { type: "module" });
+worker.onmessage = (msg) => {
+ assert_equals(msg.data, 42);
+ done();
+}
+</script>