mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +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.
9 lines
136 B
Plaintext
9 lines
136 B
Plaintext
interface MessageChannel {
|
|
|
|
constructor();
|
|
|
|
readonly attribute MessagePort port1;
|
|
readonly attribute MessagePort port2;
|
|
|
|
};
|