summaryrefslogtreecommitdiffstats
path: root/docshell/test/browser/browser_overlink.js
blob: f9371d59ce218106472a392a11840c5d13a6e8b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* 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");
    }
  );
});