diff options
Diffstat (limited to 'browser/components/preferences/in-content/tests/browser_privacypane_5.js')
-rw-r--r-- | browser/components/preferences/in-content/tests/browser_privacypane_5.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/browser/components/preferences/in-content/tests/browser_privacypane_5.js b/browser/components/preferences/in-content/tests/browser_privacypane_5.js new file mode 100644 index 000000000..a07530010 --- /dev/null +++ b/browser/components/preferences/in-content/tests/browser_privacypane_5.js @@ -0,0 +1,17 @@ +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 + '/'; +} +loader.loadSubScript(rootDir + "privacypane_tests_perwindow.js", this); + +run_test_subset([ + test_locbar_suggestion_retention("history", true), + test_locbar_suggestion_retention("bookmark", true), + test_locbar_suggestion_retention("openpage", false), + test_locbar_suggestion_retention("history", true), + test_locbar_suggestion_retention("history", false), +]); |