Skip to content

Commit

Permalink
Bug 1633475 [wpt PR 23270] - Test that postMessage doesn't block on e…
Browse files Browse the repository at this point in the history
…vent loop, a=testonly

Automatic update from web-platform-tests
Test that postMessage doesn't block on event loop

Per spec postMessage should queue a message up on the target port immediately.

Instead, when Workers are involved, some implementations queue a task up on current thread's event loop, which means that in case it gets blocked, some messages are never sent.

Closes whatwg/html#5485.
--

wpt-commits: 3320205a9d70636efc03cfff340edecd0bee4694
wpt-pr: 23270
  • Loading branch information
RReverser authored and moz-wptsync-bot committed May 4, 2020
1 parent 8699684 commit 57719c9
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
18 changes: 18 additions & 0 deletions testing/web-platform/tests/workers/postMessage_block.https.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<meta charset=utf-8>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
const t = async_test('postMessage and block');

const w = new Worker('support/postMessage_block_worker.js');

w.onmessage = t.step_func_done(() => {
const a = new Int32Array(new SharedArrayBuffer(4));
w.postMessage(a);
while (Atomics.load(a, 0) === 0);
assert_equals(Atomics.load(a, 0), 1);
});
</script>
</body>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Cross-Origin-Opener-Policy: same-origin
Cross-Origin-Embedder-Policy: require-corp
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
onmessage = e => Atomics.store(e.data, 0, 1);
postMessage('ready');
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Cross-Origin-Embedder-Policy: require-corp

0 comments on commit 57719c9

Please sign in to comment.