docshell/test/browser/browser_bug388121-1.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 function test() {
     2   waitForExplicitFinish(); 
     4   var newTab;
     5   var newBrowser;
     6   const secMan = Cc["@mozilla.org/scriptsecuritymanager;1"].getService(Ci.nsIScriptSecurityManager);
     8   function testLoad(event) {
     9     newBrowser.removeEventListener("load", testLoad, true);
    10     is (event.target, newBrowser.contentDocument, "Unexpected target");
    11     var prin = newBrowser.contentDocument.nodePrincipal;
    12     isnot(prin, null, "Loaded principal must not be null");
    13     isnot(prin, undefined, "Loaded principal must not be undefined");
    14     is(secMan.isSystemPrincipal(prin), false,
    15        "Loaded principal must not be system");
    16     gBrowser.removeTab(newTab);
    18     finish();
    19   }
    21   newTab = gBrowser.addTab();
    22   newBrowser = gBrowser.getBrowserForTab(newTab);
    23   newBrowser.contentWindow.location.href = "about:blank"
    24   newBrowser.addEventListener("load", testLoad, true);
    25 }

mercurial