summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/MessageEvent.idl
blob: 443635b5da8310071414579f9f8bbc45b6b36913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#import <DOM/Event.idl>

// https://html.spec.whatwg.org/multipage/comms.html#messageevent
[Exposed=(Window,Worker), UseNewAKString]
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 = [];
};