summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/browser_bug431826.js
blob: 704cd4a6751f30ab63a60e89af60523afd07e30f (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
55
56
function remote(task) {
  return SpecialPowers.spawn(gBrowser.selectedBrowser, [], task);
}

add_task(async function () {
  gBrowser.selectedTab = BrowserTestUtils.addTab(gBrowser);

  let promise = BrowserTestUtils.waitForErrorPage(gBrowser.selectedBrowser);
  BrowserTestUtils.loadURIString(gBrowser, "https://nocert.example.com/");
  await promise;

  await remote(() => {
    // Confirm that we are displaying the contributed error page, not the default
    let uri = content.document.documentURI;
    Assert.ok(
      uri.startsWith("about:certerror"),
      "Broken page should go to about:certerror, not about:neterror"
    );
  });

  await remote(() => {
    let div = content.document.getElementById("badCertAdvancedPanel");
    // Confirm that the expert section is collapsed
    Assert.ok(div, "Advanced content div should exist");
    Assert.equal(
      div.ownerGlobal.getComputedStyle(div).display,
      "none",
      "Advanced content should not be visible by default"
    );
  });

  // Tweak the expert mode pref
  Services.prefs.setBoolPref("browser.xul.error_pages.expert_bad_cert", true);

  promise = BrowserTestUtils.waitForErrorPage(gBrowser.selectedBrowser);
  gBrowser.reload();
  await promise;

  await remote(() => {
    let div = content.document.getElementById("badCertAdvancedPanel");
    Assert.ok(div, "Advanced content div should exist");
    Assert.equal(
      div.ownerGlobal.getComputedStyle(div).display,
      "block",
      "Advanced content should be visible by default"
    );
  });

  // Clean up
  gBrowser.removeCurrentTab();
  if (
    Services.prefs.prefHasUserValue("browser.xul.error_pages.expert_bad_cert")
  ) {
    Services.prefs.clearUserPref("browser.xul.error_pages.expert_bad_cert");
  }
});