blob: d08c1f8b7a917c5289b62c7baffcef311d185a10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
PartitionedStorageHelper.runTestInNormalAndPrivateMode(
"BroadcastChannel",
async (win3rdParty, win1stParty) => {
let a = new win3rdParty.BroadcastChannel("hello");
ok(!!a, "BroadcastChannel should be created by 3rd party iframe");
let b = new win1stParty.BroadcastChannel("hello");
ok(!!b, "BroadcastChannel should be created by 1st party iframe");
// BroadcastChannel uses the incument global, this means that its CTOR will
// always use the 3rd party iframe's window as global.
},
async _ => {
await new Promise(resolve => {
Services.clearData.deleteData(Ci.nsIClearDataService.CLEAR_ALL, () =>
resolve()
);
});
}
);
|