Backed out changeset 3d7f20119641 (bug 1148376) for suspicion of making Gip(f11) substantially flakier.

This commit is contained in:
Ryan VanderMeulen 2015-04-01 11:45:23 -04:00
parent 580e63be01
commit 4f5aa98f00
2 changed files with 5 additions and 3 deletions

View File

@ -421,6 +421,11 @@ pref("security.apps.certified.CSP.default", "default-src *; script-src 'self'; o
// Default Content Security Policy to apply to trusted apps.
pref("security.apps.trusted.CSP.default", "default-src *; object-src 'none'; frame-src 'none'");
// Temporarily force-enable GL compositing. This is default-disabled
// deep within the bowels of the widgetry system. Remove me when GL
// compositing isn't default disabled in widget/android.
pref("layers.acceleration.force-enabled", true);
// handle links targeting new windows
// 1=current window/tab, 2=new window, 3=new tab in most recent window
pref("browser.link.open_newwindow", 3);

View File

@ -3975,9 +3975,6 @@ pref("layers.bench.enabled", false);
#ifdef ANDROID
// bug 838603 -- on Android, accidentally blacklisting OpenGL layers
// means a startup crash for everyone.
// Temporarily force-enable GL compositing. This is default-disabled
// deep within the bowels of the widgetry system. Remove me when GL
// compositing isn't default disabled in widget/android.
pref("layers.acceleration.force-enabled", true);
#else
pref("layers.acceleration.force-enabled", false);