Bug 902992 - Enable position:sticky in non-release builds (e.g. Nightly and Aurora). r=dholbert

This commit is contained in:
Corey Ford 2013-09-12 13:36:45 -07:00
Родитель e1a6c697ad
Коммит cd77eb0805
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -1822,7 +1822,11 @@ pref("layout.css.filters.enabled", false);
pref("layout.css.flexbox.enabled", true);
// Is support for CSS sticky positioning enabled?
#ifdef RELEASE_BUILD
pref("layout.css.sticky.enabled", false);
#else
pref("layout.css.sticky.enabled", true);
#endif
// Is support for the CSS4 image-orientation property enabled?
pref("layout.css.image-orientation.enabled", true);