Bug 841873: Pref off CSS3 flexbox in release builds, by default. r=dbaron

This commit is contained in:
Daniel Holbert 2013-02-16 09:52:27 -08:00
parent 567af6c177
commit 074223a8e7

View File

@ -1683,7 +1683,11 @@ pref("layout.css.supports-rule.enabled", true);
#endif
// Is support for CSS Flexbox enabled?
#ifdef RELEASE_BUILD
pref("layout.css.flexbox.enabled", false);
#else
pref("layout.css.flexbox.enabled", true);
#endif
// Are sets of prefixed properties supported?
pref("layout.css.prefixes.border-image", true);