mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 12:19:05 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D59428 --HG-- extra : moz-landing-system : lando
27 lines
745 B
JavaScript
27 lines
745 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
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 == "https://example.com",
|
|
"Overlink should be missing auth credentials"
|
|
);
|
|
|
|
ok(true, "Test successful");
|
|
}
|
|
);
|
|
});
|