trisquel-icecat/icecat/testing/web-platform/tests/webmessaging/resources/transfer-arraybuffer-to-parent.html

5 lines
120 B
HTML

<!DOCTYPE html>
<script>
let ab = new Uint8Array([42, 222]).buffer;
window.parent.postMessage(ab, '*', [ab]);
</script>