mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
67ceba2e6a
The intent is to use these to autogenerate prototype declarations for Window and WorkerGlobalScope classes. And the spec links are just nice to have :^)
22 lines
702 B
Plaintext
22 lines
702 B
Plaintext
#import <DOM/Event.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/comms.html#messageevent
|
|
[Exposed=(Window,Worker)]
|
|
interface MessageEvent : Event {
|
|
constructor(DOMString type, optional MessageEventInit eventInitDict = {});
|
|
|
|
readonly attribute any data;
|
|
readonly attribute USVString origin;
|
|
readonly attribute DOMString lastEventId;
|
|
// FIXME: readonly attribute MessageEventSource? source;
|
|
// FIXME: readonly attribute FrozenArray<MessagePort> ports;
|
|
};
|
|
|
|
dictionary MessageEventInit : EventInit {
|
|
any data = null;
|
|
USVString origin = "";
|
|
DOMString lastEventId = "";
|
|
// FIXME: MessageEventSource? source = null;
|
|
// FIXME: sequence<MessagePort> ports = [];
|
|
};
|