Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'win' && socketprocess_networking && fission OR os == 'mac' && socketprocess_networking && fission OR os == 'mac' && debug OR os == 'linux' && socketprocess_networking
- Manifest: toolkit/components/extensions/test/xpcshell/xpcshell-remote.toml includes toolkit/components/extensions/test/xpcshell/xpcshell-common.toml
- Manifest: toolkit/components/extensions/test/xpcshell/xpcshell.toml includes toolkit/components/extensions/test/xpcshell/xpcshell-common.toml
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";
add_task(async function test_background_incognito() {
info(
"Test background page incognito value with permanent private browsing enabled"
);
Services.prefs.setBoolPref("browser.privatebrowsing.autostart", true);
registerCleanupFunction(() => {
Services.prefs.clearUserPref("browser.privatebrowsing.autostart");
});
let extension = ExtensionTestUtils.loadExtension({
incognitoOverride: "spanning",
async background() {
browser.test.assertEq(
window,
browser.extension.getBackgroundPage(),
"Caller should be able to access itself as a background page"
);
browser.test.assertEq(
window,
await browser.runtime.getBackgroundPage(),
"Caller should be able to access itself as a background page"
);
browser.test.assertEq(
browser.extension.inIncognitoContext,
true,
"inIncognitoContext is true for permanent private browsing"
);
browser.test.notifyPass("incognito");
},
});
await extension.startup();
await extension.awaitFinish("incognito");
await extension.unload();
});