summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/about/browser_aboutSupport_newtab_security_state.js
blob: caa45a1af5a36b2cca282f040bb30f7c217eacfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

add_task(async function checkIdentityOfAboutSupport() {
  let tab = gBrowser.addTab("about:support", {
    referrerURI: null,
    inBackground: false,
    allowThirdPartyFixup: false,
    relatedToCurrent: false,
    skipAnimation: true,
    allowMixedContent: false,
    triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal(),
  });

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