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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
declTest("getActor on both sides", {
async test(browser) {
let parent = browser.browsingContext.currentWindowGlobal.domProcess;
ok(parent, "WindowGlobalParent should have value.");
let actorParent = parent.getActor("TestProcessActor");
is(
actorParent.show(),
"TestProcessActorParent",
"actor `show` should have value."
);
is(
actorParent.manager,
parent,
"manager should match WindowGlobalParent.domProcess"
);
ok(
actorParent.sawActorCreated,
"Checking that we can observe parent creation"
);
await SpecialPowers.spawn(browser, [], async function () {
let child = ChromeUtils.domProcessChild;
ok(child, "WindowGlobalChild should have value.");
let actorChild = child.getActor("TestProcessActor");
is(
actorChild.show(),
"TestProcessActorChild",
"actor show should have vaule."
);
is(
actorChild.manager,
child,
"manager should match ChromeUtils.domProcessChild."
);
ok(
actorChild.sawActorCreated,
"Checking that we can observe child creation"
);
});
},
});
|