Bug 1099032 - Enable CSS writing-mode support by default for nightly/aurora builds. r=smontagu

This commit is contained in:
Jonathan Kew 2015-03-24 22:34:24 +00:00
parent ce3d2e8c4d
commit 73e7fe5152

View File

@ -2186,7 +2186,11 @@ pref("layout.css.scope-pseudo.enabled", true);
pref("layout.css.background-blend-mode.enabled", true);
// Is support for CSS vertical text enabled?
#ifdef RELEASE_BUILD
pref("layout.css.vertical-text.enabled", false);
#else
pref("layout.css.vertical-text.enabled", true);
#endif
// Is support for object-fit and object-position enabled?
pref("layout.css.object-fit-and-position.enabled", true);