summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/browser_aboutSupport_newtab_security_state.js
blob: e574ba978a42ecdc731a010268aa74726caf5aae (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

//
// Whitelisting this test.
// As part of bug 1077403, the leaking uncaught rejection should be fixed.
//
thisTestLeaksUncaughtRejectionsAndShouldBeFixed("TypeError: window.location is null");


add_task(function* checkIdentityOfAboutSupport() {
  let tab = gBrowser.loadOneTab("about:support", {
    referrerURI: null,
    inBackground: false,
    allowThirdPartyFixup: false,
    relatedToCurrent: false,
    skipAnimation: true,
    allowMixedContent: false
  });

  yield promiseTabLoaded(tab);
  let identityBox = document.getElementById("identity-box");
  is(identityBox.className, "chromeUI", "Should know that we're chrome.");
  gBrowser.removeTab(tab);
});