зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
642 B
JavaScript
16 строки
642 B
JavaScript
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");
|
|
});
|
|
});
|
|
});
|
|
|