зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
655 B
JavaScript
16 строки
655 B
JavaScript
add_task(async function test() {
|
|
await BrowserTestUtils.withNewTab({ gBrowser, url: "about:blank" }, async function(newBrowser) {
|
|
await ContentTask.spawn(newBrowser, null, async function() {
|
|
var prin = content.document.nodePrincipal;
|
|
Assert.notEqual(prin, null, "Loaded principal must not be null");
|
|
Assert.notEqual(prin, undefined, "Loaded principal must not be undefined");
|
|
|
|
const secMan = Cc["@mozilla.org/scriptsecuritymanager;1"]
|
|
.getService(Ci.nsIScriptSecurityManager);
|
|
Assert.equal(secMan.isSystemPrincipal(prin), false,
|
|
"Loaded principal must not be system");
|
|
});
|
|
});
|
|
});
|
|
|