1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:37:46 +00:00

LibWeb: Add MessageEvent.source

This commit is contained in:
Luke Wilde 2023-11-06 20:11:58 +00:00 committed by Andreas Kling
parent eaa3b85864
commit 1607b2c978
3 changed files with 21 additions and 2 deletions

View file

@ -1,4 +1,8 @@
#import <DOM/Event.idl>
#import <HTML/MessagePort.idl>
// FIXME: typedef (WindowProxy or MessagePort or ServiceWorker) MessageEventSource;
typedef (WindowProxy or MessagePort) MessageEventSource;
// https://html.spec.whatwg.org/multipage/comms.html#messageevent
[Exposed=(Window,Worker)]
@ -8,7 +12,7 @@ interface MessageEvent : Event {
readonly attribute any data;
readonly attribute USVString origin;
readonly attribute DOMString lastEventId;
// FIXME: readonly attribute MessageEventSource? source;
readonly attribute MessageEventSource? source;
// FIXME: readonly attribute FrozenArray<MessagePort> ports;
};
@ -16,6 +20,6 @@ dictionary MessageEventInit : EventInit {
any data = null;
USVString origin = "";
DOMString lastEventId = "";
// FIXME: MessageEventSource? source = null;
MessageEventSource? source = null;
// FIXME: sequence<MessagePort> ports = [];
};