Fix for bug 739898 (Stop using enablePrivilege in test_bug480509.html). r=bz.

This commit is contained in:
Peter Van der Beken 2012-03-27 16:31:36 -07:00
parent 54d613c763
commit ec45e06e99
2 changed files with 18 additions and 2 deletions

View File

@ -66,8 +66,7 @@ function onWindowLoad()
try
{
req.open("GET", "https://www.bank1.com/", false);
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
req.channel.notificationCallbacks = certListener;
SpecialPowers.setPrivilegedProps(req, "channel.notificationCallbacks", certListener);
req.send(null);
}
catch(ex)

View File

@ -940,6 +940,23 @@ SpecialPowersAPI.prototype = {
}
return obj;
},
setPrivilegedProps: function(obj, props, val) {
var parts = props.split('.');
if (parts.length == 0) {
return;
}
for (var i = 0; i < parts.length - 1; i++) {
var p = parts[i];
if (obj[p]) {
obj = obj[p];
} else {
return;
}
}
obj[parts[i]] = val;
},
get focusManager() {
if (this._fm != null)