LibWeb: Implement basic support for MessageChannel and MessagePort

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.
This commit is contained in:
Andreas Kling 2021-09-19 22:12:31 +02:00
commit 95559c4277
Notes: sideshowbarker 2024-07-18 03:38:44 +09:00
12 changed files with 322 additions and 0 deletions

View file

@ -0,0 +1,10 @@
interface MessagePort : EventTarget {
undefined postMessage(any message);
undefined start();
undefined close();
attribute EventHandler onmessage;
attribute EventHandler onmessageerror;
};