LibWeb: Add a basic MessageChannel test

This commit is contained in:
Andrew Kaster
2023-12-07 15:50:01 -07:00
committed by Andreas Kling
parent fef7571931
commit 512624f31a
Notes: sideshowbarker 2024-07-16 23:59:28 +09:00
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<script src="../include.js"></script>
<script>
asyncTest(done => {
let channel = new MessageChannel();
channel.port1.onmessage = (event) => {
println("Port1: " + JSON.stringify(event.data));
channel.port1.postMessage(event.data);
};
channel.port2.onmessage = (event) => {
println("Port2: " + JSON.stringify(event.data));
if (event.data === "DONE") {
done();
}
};
// FIXME: These should be output in the order: Port1: A, Port2: A, Port1: B, Port2: B, ...
println("FIXME: Order of messages is incorrect");
channel.port2.postMessage("Hello");
channel.port2.postMessage({ foo: "bar", baz: [ 1, 2, 3, 4 ] });
channel.port2.postMessage("DONE");
});
</script>