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("contentWindow null when inner window inactive", {
matches: [TEST_URL + "*"],
url: TEST_URL + "?1",
async test(browser) {
{
let parent = browser.browsingContext.currentWindowGlobal;
let actorParent = parent.getActor("TestWindow");
await actorParent.sendQuery("storeActor");
}
{
let url = TEST_URL + "?2";
let loaded = BrowserTestUtils.browserLoaded(browser, false, url);
await BrowserTestUtils.loadURI(browser, url);
await loaded;
}
let parent = browser.browsingContext.currentWindowGlobal;
let actorParent = parent.getActor("TestWindow");
let result = await actorParent.sendQuery("checkActor");
if (SpecialPowers.useRemoteSubframes) {
is(
result.status,
"error",
"Should get an error when bfcache is disabled for Fission"
);
is(
result.errorType,
"InvalidStateError",
"Should get an InvalidStateError without bfcache"
);
} else {
is(result.status, "success", "Should succeed when bfcache is enabled");
ok(
result.valueIsNull,
"Should get a null contentWindow when inner window is inactive"
);
}
},
});
|