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.
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 }