Bug 814530 - Disable @supports on Release and Beta. r=dbaron

This commit is contained in:
Cameron McCormack 2012-12-21 10:36:42 +11:00
parent 38b9359caf
commit 78b6950fe3

View File

@ -1639,7 +1639,11 @@ pref("layout.css.dpi", -1);
pref("layout.css.devPixelsPerPx", "-1.0");
// Is support for the the @supports rule enabled?
#ifdef RELEASE_BUILD
pref("layout.css.supports-rule.enabled", false);
#else
pref("layout.css.supports-rule.enabled", true);
#endif
// Is support for CSS Flexbox enabled?
pref("layout.css.flexbox.enabled", true);