summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/MessageChannel.idl
blob: b9d855f774dfb875bdf7165f6ff63c84dfad4a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#import <HTML/MessagePort.idl>

// https://html.spec.whatwg.org/multipage/web-messaging.html#messagechannel
[Exposed=(Window,Worker)]
interface MessageChannel {

    constructor();

    readonly attribute MessagePort port1;
    readonly attribute MessagePort port2;

};