gecko/browser/components/preferences/tests/browser_privacypane_2.js
Josh Matthews 7c43730c0b Bug 801823 - Prompt to restart Firefox when changing the private browsing autostart preference. r=ehsan
--HG--
rename : browser/components/preferences/in-content/tests/privacypane_tests.js => browser/components/preferences/in-content/tests/privacypane_tests_perwindow.js
rename : browser/components/preferences/tests/privacypane_tests.js => browser/components/preferences/tests/privacypane_tests_perwindow.js
2012-12-20 17:57:20 -05:00

35 lines
1.2 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
function test() {
let loader = Cc["@mozilla.org/moz/jssubscript-loader;1"].
getService(Ci.mozIJSSubScriptLoader);
let rootDir = getRootDirectory(gTestPath);
let jar = getJar(rootDir);
if (jar) {
let tmpdir = extractJarToTmp(jar);
rootDir = "file://" + tmpdir.path + '/';
}
try {
loader.loadSubScript(rootDir + "privacypane_tests_perwindow.js", this);
} catch(x) {
loader.loadSubScript(rootDir + "privacypane_tests.js", this);
}
run_test_subset([
test_historymode_retention("remember", undefined),
test_historymode_retention("dontremember", "remember"),
test_historymode_retention("custom", "dontremember"),
// custom without any micro-prefs changed won't retain
test_historymode_retention("remember", "dontremember"),
test_historymode_retention("custom", "remember"),
// custom without any micro-prefs changed won't retain
test_historymode_retention("remember", "remember"),
// reset all preferences to their default values once we're done
reset_preferences
]);
}