testing/mochitest/tests/browser/browser_privileges.js

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 function test() {
     2   // simple test to confirm we have chrome privileges
     3   let hasPrivileges = true;
     5   // this will throw an exception if we are not running with privileges
     6   try {
     7     var prefs = Components.classes["@mozilla.org/preferences-service;1"].
     8                 getService(Components.interfaces.nsIPrefBranch);
     9   }
    10   catch (e) {
    11     hasPrivileges = false;
    12   }
    14   // if we get here, we must have chrome privileges
    15   ok(hasPrivileges, "running with chrome privileges");
    16 }

mercurial