1
0
Fork 0
firefox/dom/localstorage/test/browser_private_ls.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

44 lines
989 B
JavaScript

/**
* This test is mainly to verify that datastores are cleared when the last
* private browsing context exited.
*/
async function lsCheckFunc() {
let storage = content.localStorage;
if (storage.length) {
return false;
}
// Store non-ASCII value to verify bug 1552428.
storage.setItem("foo", "úžasné");
return true;
}
function checkTabWindowLS(tab) {
return SpecialPowers.spawn(tab.linkedBrowser, [], lsCheckFunc);
}
add_task(async function () {
const pageUrl =
"http://example.com/browser/dom/localstorage/test/page_private_ls.html";
for (let i = 0; i < 2; i++) {
let privateWin = await BrowserTestUtils.openNewBrowserWindow({
private: true,
});
let privateTab = await BrowserTestUtils.openNewForegroundTab(
privateWin.gBrowser,
pageUrl
);
ok(
await checkTabWindowLS(privateTab),
"LS works correctly in a private-browsing page."
);
await BrowserTestUtils.closeWindow(privateWin);
}
});