forked from mirrors/gecko-dev
The antitracking test mini-framework is extended to run the non-blocking callback of the tests three times, each time with a unique combination of the network.cookie.cookieBehavior and browser.contentblocking.enabled prefs that would cause the reject tracker cookie behavior feature to get disabled. This works seamlessly for all test cases that do not make any assumptions around how many times their callbacks are executed. Note that browser_imageCache.js depends on the number of times its non-blocking callback gets executed. As a result of this, this test is split into three tests to test the three possible combinations of the pref for the non-blocking callback.
14 lines
423 B
JavaScript
14 lines
423 B
JavaScript
ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
let blockingByCookieBehavior = false;
|
|
let blockingByContentBlocking = true;
|
|
|
|
let rootDir = getRootDirectory(gTestPath);
|
|
let jar = getJar(rootDir);
|
|
if (jar) {
|
|
let tmpdir = extractJarToTmp(jar);
|
|
rootDir = "file://" + tmpdir.path + "/";
|
|
}
|
|
/* import-globals-from imageCacheWorker.js */
|
|
Services.scriptloader.loadSubScript(rootDir + "imageCacheWorker.js", this);
|
|
|