blob: 7da617594aead7e34cd0311fde96ee07c43278f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
add_task(function* test() {
yield BrowserTestUtils.withNewTab({ gBrowser, url: "about:blank" }, function* (newBrowser) {
yield ContentTask.spawn(newBrowser, null, 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");
});
});
});
|