gecko-dev/toolkit/components/antitracking/test/browser/browser_partitionedDOMCache.js
Victor Porof 4a06c925ac Bug 1561435 - Format toolkit/components/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36052

--HG--
extra : source : b5be5b4f4b47c256e28a29f665dc754f6407ee7f
2019-07-05 11:14:05 +02:00

35 lines
821 B
JavaScript

/* import-globals-from partitionedstorage_head.js */
PartitionedStorageHelper.runTest(
"DOMCache",
async (win3rdParty, win1stParty, allowed) => {
// DOM Cache is not supported. Always blocked.
await win3rdParty.caches.open("wow").then(
_ => {
ok(allowed, "DOM Cache cannot be used!");
},
_ => {
ok(!allowed, "DOM Cache cannot be used!");
}
);
await win1stParty.caches.open("wow").then(
_ => {
ok(true, "DOM Cache should be available");
},
_ => {
ok(false, "DOM Cache should be available");
}
);
},
async _ => {
await new Promise(resolve => {
Services.clearData.deleteData(Ci.nsIClearDataService.CLEAR_ALL, value =>
resolve()
);
});
},
[["dom.caches.testing.enabled", true]]
);