diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/webmessaging/postMessage_crosssite.sub.htm | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/webmessaging/postMessage_crosssite.sub.htm')
-rw-r--r-- | testing/web-platform/tests/webmessaging/postMessage_crosssite.sub.htm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webmessaging/postMessage_crosssite.sub.htm b/testing/web-platform/tests/webmessaging/postMessage_crosssite.sub.htm new file mode 100644 index 0000000000..25bccd9df2 --- /dev/null +++ b/testing/web-platform/tests/webmessaging/postMessage_crosssite.sub.htm @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<body> +<script> +async function addIframeAndReceiveMessage(path) { + let url = new URL('resources/transfer-arraybuffer-to-parent.html', location); + url.hostname = '{{hosts[alt][]}}'; + + let frame = document.createElement('iframe'); + try { + frame.src = url; + document.body.appendChild(frame); + return await new Promise((resolve, reject) => { + window.addEventListener('message', e => resolve(e)); + window.addEventListener('messageerror', e => reject(new Error('received messageerror'))); + }); + } finally { + frame.remove(); + } +} + +promise_test(async () => { + let messageEvent = await addIframeAndReceiveMessage('resources/transfer-arraybuffer-to-parent.html'); + assert_class_string(messageEvent.data, 'ArrayBuffer'); + assert_array_equals(new Uint8Array(messageEvent.data), [42, 222]); +}, "cross-site windows can send transferred ArrayBuffer"); +</script> +</body> |