summaryrefslogtreecommitdiffstats
path: root/accessible/tests/browser/tree/browser_test_nsIAccessibleDocument_URL.js
blob: 623f2640f06feed105fcee9ffeb4d00244c0bde9 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

async function promiseEventDocumentLoadComplete(expectedURL) {
  return new Promise(resolve => {
    waitForEvent(EVENT_DOCUMENT_LOAD_COMPLETE, event => {
      try {
        if (
          event.accessible.QueryInterface(nsIAccessibleDocument).URL ==
          expectedURL
        ) {
          resolve(event.accessible.QueryInterface(nsIAccessibleDocument));
          return true;
        }
        return false;
      } catch (e) {
        return false;
      }
    });
  });
}

add_task(async function testInDataURI() {
  const kURL = "data:text/html,Some text";
  const waitForDocumentLoadComplete = promiseEventDocumentLoadComplete("");
  await BrowserTestUtils.withNewTab(kURL, async browser => {
    is(
      (await waitForDocumentLoadComplete).URL,
      "",
      "nsIAccessibleDocument.URL shouldn't return data URI"
    );
  });
});

add_task(async function testInHTTPSURIContainingPrivateThings() {
  await SpecialPowers.pushPrefEnv({
    set: [["network.auth.confirmAuth.enabled", false]],
  });
  const kURL =
    "https://username:password@example.com/browser/toolkit/content/tests/browser/file_empty.html?query=some#ref";
  const kURLWithoutUserPass =
    "https://example.com/browser/toolkit/content/tests/browser/file_empty.html?query=some#ref";
  const waitForDocumentLoadComplete =
    promiseEventDocumentLoadComplete(kURLWithoutUserPass);
  await BrowserTestUtils.withNewTab(kURL, async browser => {
    is(
      (await waitForDocumentLoadComplete).URL,
      kURLWithoutUserPass,
      "nsIAccessibleDocument.URL shouldn't contain user/pass section"
    );
  });
});