mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
LibWeb: Add a basic MessageChannel test
This commit is contained in:
committed by
Andreas Kling
parent
fef7571931
commit
512624f31a
Notes:
sideshowbarker
2024-07-16 23:59:28 +09:00
Author: https://github.com/ADKaster Commit: https://github.com/SerenityOS/serenity/commit/512624f31a Pull-request: https://github.com/SerenityOS/serenity/pull/22203
@@ -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>
|
||||
Reference in New Issue
Block a user