mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 09:44:58 +00:00
8 lines
283 B
Text
8 lines
283 B
Text
interface MessageEvent : Event {
|
|
|
|
readonly attribute any data;
|
|
readonly attribute USVString origin;
|
|
readonly attribute DOMString lastEventId;
|
|
// FIXME: readonly attribute MessageEventSource? source;
|
|
// FIXME: readonly attribute FrozenArray<MessagePort> ports;
|
|
};
|