1
0
Fork 0
firefox/docshell/test/browser/browser_overlink.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

33 lines
911 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
ChromeUtils.defineESModuleGetters(this, {
UrlbarTestUtils: "resource://testing-common/UrlbarTestUtils.sys.mjs",
});
const TEST_PATH = getRootDirectory(gTestPath).replace(
"chrome://mochitests/content",
"https://example.com"
);
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");
}
);
});