1
0
Fork 0
firefox/toolkit/components/antitracking/test/browser/browser_partitionedMessaging.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
684 B
JavaScript

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()
);
});
}
);