Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
ChromeUtils.defineESModuleGetters(this, {
});
const TEST_PATH = getRootDirectory(gTestPath).replace(
);
add_task(async function test_stripAuthCredentials() {
await BrowserTestUtils.withNewTab(
TEST_PATH + "overlink_test.html",
async function (browser) {
await SpecialPowers.spawn(browser, [], function () {
content.document.getElementById("link").focus();
});
await TestUtils.waitForCondition(
() =>
XULBrowserWindow.overLink ==
UrlbarTestUtils.trimURL("https://example.com"),
"Overlink should be missing auth credentials"
);
ok(true, "Test successful");
}
);
});