Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: os == 'mac' && os_version == '11.20' && arch == 'aarch64' && opt && socketprocess_networking
- This test failed 7 times in the preceding 30 days. quicksearch this test
- Manifest: toolkit/content/tests/browser/browser.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function test_first() {
registerCleanupFunction(() => {
// Must clear mode first, otherwise we'll have non-local connections to
// the cloudflare URL.
Services.prefs.clearUserPref("network.trr.mode");
Services.prefs.clearUserPref("network.trr.uri");
});
await BrowserTestUtils.withNewTab(
"about:networking#dns",
async function (browser) {
ok(!browser.isRemoteBrowser, "Browser should not be remote.");
await ContentTask.spawn(browser, null, async function () {
let url_tbody = content.document.getElementById("dns_trr_url");
info(url_tbody);
is(
url_tbody.children[0].children[0].textContent,
);
is(url_tbody.children[0].children[1].textContent, "0");
});
}
);
Services.prefs.setIntPref("network.trr.mode", 2);
await BrowserTestUtils.withNewTab(
"about:networking#dns",
async function (browser) {
ok(!browser.isRemoteBrowser, "Browser should not be remote.");
await ContentTask.spawn(browser, null, async function () {
let url_tbody = content.document.getElementById("dns_trr_url");
info(url_tbody);
is(
url_tbody.children[0].children[0].textContent,
);
is(url_tbody.children[0].children[1].textContent, "2");
});
}
);
});