1
0
Fork 0
firefox/testing/web-platform/tests/wasm/serialization/module/no-transferring.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

31 lines
1.4 KiB
HTML

<!DOCTYPE html>
<!-- Based on similar tests in html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/ -->
<meta charset="utf-8">
<title>WebAssembly.Modules cannot be transferred</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="./resources/create-empty-wasm-module.js"></script>
<script>
"use strict";
test(() => {
const module = createEmptyWasmModule();
assert_throws_dom("DataCloneError", () => window.postMessage(module, "*", [module]));
assert_throws_dom("DataCloneError", () => window.postMessage("test", "*", [module]));
}, "Trying to transfer a WebAssembly.Module to this window throws");
test(() => {
const module = createEmptyWasmModule();
const worker = new Worker("resources/echo-worker.js");
assert_throws_dom("DataCloneError", () => worker.postMessage(module, [module]));
assert_throws_dom("DataCloneError", () => worker.postMessage("test", [module]));
}, "Trying to transfer a WebAssembly.Module to a worker throws");
test(() => {
const module = createEmptyWasmModule();
const channel = new MessageChannel();
assert_throws_dom("DataCloneError", () => channel.port1.postMessage(module, [module]));
assert_throws_dom("DataCloneError", () => channel.port1.postMessage("test", [module]));
}, "Trying to transfer a WebAssembly.Module through a MessagePort throws");
</script>