forked from mirrors/gecko-dev
MozReview-Commit-ID: 9m9iss3jUJJ --HG-- extra : rebase_source : e6a6f9dec168ab1d0e0343236db65f3dd1b44aeb
16 lines
599 B
JavaScript
16 lines
599 B
JavaScript
let rootDir = getRootDirectory(gTestPath);
|
|
let jar = getJar(rootDir);
|
|
if (jar) {
|
|
let tmpdir = extractJarToTmp(jar);
|
|
rootDir = "file://" + tmpdir.path + "/";
|
|
}
|
|
/* import-globals-from privacypane_tests_perwindow.js */
|
|
Services.scriptloader.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),
|
|
]);
|