Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | function test() { |
michael@0 | 2 | waitForExplicitFinish(); |
michael@0 | 3 | |
michael@0 | 4 | var newTab; |
michael@0 | 5 | var newBrowser; |
michael@0 | 6 | const secMan = Cc["@mozilla.org/scriptsecuritymanager;1"].getService(Ci.nsIScriptSecurityManager); |
michael@0 | 7 | |
michael@0 | 8 | function testLoad(event) { |
michael@0 | 9 | newBrowser.removeEventListener("load", testLoad, true); |
michael@0 | 10 | is (event.target, newBrowser.contentDocument, "Unexpected target"); |
michael@0 | 11 | var prin = newBrowser.contentDocument.nodePrincipal; |
michael@0 | 12 | isnot(prin, null, "Loaded principal must not be null"); |
michael@0 | 13 | isnot(prin, undefined, "Loaded principal must not be undefined"); |
michael@0 | 14 | is(secMan.isSystemPrincipal(prin), false, |
michael@0 | 15 | "Loaded principal must not be system"); |
michael@0 | 16 | gBrowser.removeTab(newTab); |
michael@0 | 17 | |
michael@0 | 18 | finish(); |
michael@0 | 19 | } |
michael@0 | 20 | |
michael@0 | 21 | newTab = gBrowser.addTab(); |
michael@0 | 22 | newBrowser = gBrowser.getBrowserForTab(newTab); |
michael@0 | 23 | newBrowser.contentWindow.location.href = "about:blank" |
michael@0 | 24 | newBrowser.addEventListener("load", testLoad, true); |
michael@0 | 25 | } |
michael@0 | 26 |