mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-03 08:52:54 +00:00
This implementation completely ignores MessagePorts, and manually plumbs data through LocalSockets.
4 lines
86 B
JavaScript
4 lines
86 B
JavaScript
onmessage = evt => {
|
|
postMessage(evt.data, null);
|
|
};
|
|
postMessage("loaded", null);
|