mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-31 19:10:36 +00:00
Bug 791526 - Temporarily add the |netscape.security| object back in to fix broken browser detection. r=bz
This commit is contained in:
parent
515dcdebee
commit
5c2c69faa2
@ -67,15 +67,6 @@ nsSecurityNameSet::InitializeNameSet(nsIScriptContext* aScriptContext)
|
||||
JSContext* cx = aScriptContext->GetNativeContext();
|
||||
JSObject *global = JS_ObjectToInnerObject(cx, JS_GetGlobalObject(cx));
|
||||
|
||||
// We hide enablePrivilege behind a pref because it has been altered in a
|
||||
// way that makes it fundamentally insecure to use in production. Mozilla
|
||||
// uses this pref during automated testing to support legacy test code that
|
||||
// uses enablePrivilege. If you're not doing test automation, you _must_ not
|
||||
// flip this pref, or you will be exposing all your users to security
|
||||
// vulnerabilities.
|
||||
if (!Preferences::GetBool("security.enablePrivilege.enable_for_tests"))
|
||||
return NS_OK;
|
||||
|
||||
/*
|
||||
* Find Object.prototype's class by walking up the global object's
|
||||
* prototype chain.
|
||||
@ -116,6 +107,15 @@ nsSecurityNameSet::InitializeNameSet(nsIScriptContext* aScriptContext)
|
||||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
|
||||
// We hide enablePrivilege behind a pref because it has been altered in a
|
||||
// way that makes it fundamentally insecure to use in production. Mozilla
|
||||
// uses this pref during automated testing to support legacy test code that
|
||||
// uses enablePrivilege. If you're not doing test automation, you _must_ not
|
||||
// flip this pref, or you will be exposing all your users to security
|
||||
// vulnerabilities.
|
||||
if (!Preferences::GetBool("security.enablePrivilege.enable_for_tests"))
|
||||
return NS_OK;
|
||||
|
||||
/* Define PrivilegeManager object with the necessary "static" methods. */
|
||||
obj = JS_DefineObject(cx, securityObj, "PrivilegeManager", objectClass,
|
||||
nullptr, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user