1
0
Fork 0
firefox/testing/web-platform/tests/wasm/serialization/module/window-messagechannel-success.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
820 B
HTML

<!DOCTYPE html>
<!-- Based on similar tests in html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/ -->
<meta charset="utf-8">
<title>Structured cloning of WebAssembly.Module using MessageChannel</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="./resources/test-incrementer.js"></script>
<div id="log"></div>
<script>
"use strict";
promise_test(t => {
const worker = new Worker("resources/incrementer-worker-with-channel.js");
const channel = new MessageChannel();
worker.postMessage(channel.port2, [channel.port2]);
return testSharingViaIncrementerScript(t, channel.port1, "window", channel.port1, "worker");
}, "postMessaging to a dedicated worker via MessageChannel allows them to instantiate");
</script>