mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 16:35:07 +00:00

This patch adds a basic initial implementation of these API's. Since LibWeb currently doesn't support workers, this implementation of messaging doesn't bother with serializing and deserializing messages.
7 lines
200 B
HTML
7 lines
200 B
HTML
<script>
|
|
var channel = new MessageChannel();
|
|
channel.port2.onmessage = function(event) {
|
|
console.log("Port2 received '" + event.data + "'");
|
|
}
|
|
channel.port1.postMessage("HELLO FRIEND");
|
|
</script>
|