gecko-dev/toolkit/components/antitracking/test/browser/browser_partitionedMessaging.js
Andrea Marchesini 3ec4717c70 Bug 1536411 - StoragePrincipal - part 5 - Tests, r=Ehsan
Differential Revision: https://phabricator.services.mozilla.com/D24029

--HG--
rename : toolkit/components/antitracking/test/browser/head.js => toolkit/components/antitracking/test/browser/antitracking_head.js
extra : moz-landing-system : lando
2019-04-12 05:30:56 +00:00

18 lines
705 B
JavaScript

/* import-globals-from storageprincipal_head.js */
StoragePrincipalHelper.runTest("BroadcastChannel",
async (win3rdParty, win1stParty, allowed) => {
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, value => resolve());
});
});