These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
11 lines
367 B
Text
11 lines
367 B
Text
// https://html.spec.whatwg.org/multipage/web-messaging.html#broadcastchannel
|
|
[Exposed=(Window,Worker)]
|
|
interface BroadcastChannel : EventTarget {
|
|
constructor(DOMString name);
|
|
|
|
readonly attribute DOMString name;
|
|
undefined postMessage(any message);
|
|
undefined close();
|
|
attribute EventHandler onmessage;
|
|
attribute EventHandler onmessageerror;
|
|
};
|