Bug 1337655 part 2 - Turn off moz-prefixed gradient functions for nightly. r=dbaron

MozReview-Commit-ID: LWnHGpokLYV

--HG--
extra : rebase_source : 33988acc2a1fa67106587185e6c98ed7c4fe6bd7
This commit is contained in:
Xidorn Quan 2017-05-19 13:41:51 +10:00
Родитель e57ec5648d
Коммит cddfee06c7
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -2791,7 +2791,13 @@ pref("layout.css.prefixes.transitions", true);
pref("layout.css.prefixes.animations", true);
pref("layout.css.prefixes.box-sizing", true);
pref("layout.css.prefixes.font-features", true);
// Is -moz-prefixed gradient functions enabled?
#ifdef NIGHTLY_BUILD
pref("layout.css.prefixes.gradients", false);
#else
pref("layout.css.prefixes.gradients", true);
#endif
// Are webkit-prefixed properties & property-values supported?
pref("layout.css.prefixes.webkit", true);