mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
8 lines
200 B
HTML
8 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>
|