Backed out changeset 5c7de47bcacb (bug 1927094) for causing Bug 1928689. a=backout
[gecko.git] / docshell / test / browser / browser_bug388121-1.js
blob07c476f11b5eb44278552b472d8813b46240fa8a
1 add_task(async function test() {
2   await BrowserTestUtils.withNewTab(
3     { gBrowser, url: "about:blank" },
4     async function (newBrowser) {
5       await SpecialPowers.spawn(newBrowser, [], async function () {
6         var prin = content.document.nodePrincipal;
7         Assert.notEqual(prin, null, "Loaded principal must not be null");
8         Assert.notEqual(
9           prin,
10           undefined,
11           "Loaded principal must not be undefined"
12         );
14         Assert.equal(
15           prin.isSystemPrincipal,
16           false,
17           "Loaded principal must not be system"
18         );
19       });
20     }
21   );
22 });