mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
95559c4277
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.
8 lines
136 B
Text
8 lines
136 B
Text
interface MessageChannel {
|
|
|
|
constructor();
|
|
|
|
readonly attribute MessagePort port1;
|
|
readonly attribute MessagePort port2;
|
|
|
|
};
|