blob: 685aa10e437591194fdfd2bff9f83474431a84e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(async function() {
let sb = new Cu.Sandbox('http://www.example.com',
{ wantGlobalProperties: ["MessageChannel"] });
sb.ok = ok;
Cu.evalInSandbox('ok((new MessageChannel()) instanceof MessageChannel);',
sb);
Cu.evalInSandbox('ok((new MessageChannel()).port1 instanceof MessagePort);',
sb);
Cu.importGlobalProperties(["MessageChannel"]);
let mc = new MessageChannel();
Assert.ok(mc instanceof MessageChannel);
Assert.ok(mc.port1 instanceof MessagePort);
Assert.ok(mc.port2 instanceof MessagePort);
mc.port1.postMessage(42);
let result = await new Promise(resolve => {
mc.port2.onmessage = e => {
resolve(e.data);
}
});
Assert.equal(result, 42);
});
|