1
0
Fork 0
firefox/netwerk/test/unit_ipc/test_trackingProtection_annotateChannels_wrap1.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

26 lines
673 B
JavaScript

const { UrlClassifierTestUtils } = ChromeUtils.importESModule(
"resource://testing-common/UrlClassifierTestUtils.sys.mjs"
);
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();
});
}