blob: c51ffd1a9ded102b4945dd8497a6898d38d2413a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
const { UrlClassifierTestUtils } = ChromeUtils.import(
"resource://testing-common/UrlClassifierTestUtils.jsm"
);
function run_test() {
do_get_profile();
Services.prefs.setBoolPref(
"privacy.trackingprotection.annotate_channels",
false
);
Services.prefs.setBoolPref(
"privacy.trackingprotection.lower_network_priority",
false
);
do_test_pending();
UrlClassifierTestUtils.addTestTrackers().then(() => {
run_test_in_child(
"../unit/test_trackingProtection_annotateChannels.js",
() => {
UrlClassifierTestUtils.cleanupTestTrackers();
do_test_finished();
}
);
do_test_finished();
});
}
|