mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 10:37:17 +02:00
This implementation completely ignores MessagePorts, and manually plumbs data through LocalSockets.
5 lines
86 B
JavaScript
5 lines
86 B
JavaScript
onmessage = evt => {
|
|
postMessage(evt.data, null);
|
|
};
|
|
postMessage("loaded", null);
|