Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: !nightly_build
- Manifest: dom/tests/browser/browser.toml
const TEST_SCRIPT_URL =
const TEST_MODULE_URL =
const TEST_SJS_URL =
async function testCache({ enableCache, type }) {
await SpecialPowers.pushPrefEnv({
set: [["dom.script_loader.navigation_cache", enableCache]],
});
registerCleanupFunction(() => SpecialPowers.popPrefEnv());
const response1 = await fetch(TEST_SJS_URL + "?reset");
is(await response1.text(), "reset", "Server state should be reset");
ChromeUtils.clearResourceCache();
Services.cache2.clear();
async function getCounter(tab) {
return SpecialPowers.spawn(tab.linkedBrowser, [], () => {
return content.document.body.getAttribute("counter");
});
}
async function openTab(url, userContextId) {
const tab = BrowserTestUtils.addTab(gBrowser, url, { userContextId });
await BrowserTestUtils.browserLoaded(tab.linkedBrowser);
return tab;
}
const url = type === "script" ? TEST_SCRIPT_URL : TEST_MODULE_URL;
// Loading script from different containers should use separate cache.
const tab0 = await openTab(url, 1);
is(await getCounter(tab0), "0");
const tab1 = await openTab(url, 2);
is(await getCounter(tab1), "1");
// Reloading the page should use the cached script, for each container.
await BrowserTestUtils.reloadTab(tab0);
is(await getCounter(tab0), "0");
await BrowserTestUtils.reloadTab(tab1);
is(await getCounter(tab1), "1");
BrowserTestUtils.removeTab(tab0);
BrowserTestUtils.removeTab(tab1);
}
add_task(async function testScriptNoCache() {
await testCache({
enableCache: false,
type: "script",
});
});
add_task(async function testScriptCache() {
await testCache({
enableCache: true,
type: "script",
});
});
add_task(async function testModuleNoCache() {
await testCache({
enableCache: false,
type: "module",
});
});
add_task(async function testModuleCache() {
await testCache({
enableCache: true,
type: "module",
});
});