Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: socketprocess_networking
- Manifest: netwerk/test/unit_ipc/xpcshell.toml
const { UrlClassifierTestUtils } = ChromeUtils.importESModule(
);
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();
});
}