Bug 243412: Add box-sizing preference to control the vendor prefix; r=dbaron

This commit is contained in:
Lukas Nordin 2014-02-04 18:06:18 -08:00
Родитель 0a9b781e2a
Коммит 5815633a98
2 изменённых файлов: 2 добавлений и 1 удалений

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

@ -118,7 +118,7 @@ CSS_PROP_ALIAS(-moz-animation-timing-function,
CSS_PROP_ALIAS(-moz-box-sizing, CSS_PROP_ALIAS(-moz-box-sizing,
box_sizing, box_sizing,
MozBoxSizing, MozBoxSizing,
"") "layout.css.prefixes.box-sizing")
CSS_PROP_ALIAS(font-feature-settings, CSS_PROP_ALIAS(font-feature-settings,
font_feature_settings, font_feature_settings,
FontFeatureSettings, FontFeatureSettings,

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

@ -1785,6 +1785,7 @@ pref("layout.css.prefixes.border-image", true);
pref("layout.css.prefixes.transforms", true); pref("layout.css.prefixes.transforms", true);
pref("layout.css.prefixes.transitions", true); pref("layout.css.prefixes.transitions", true);
pref("layout.css.prefixes.animations", true); pref("layout.css.prefixes.animations", true);
pref("layout.css.prefixes.box-sizing", true);
// Is support for the :scope selector enabled? // Is support for the :scope selector enabled?
#ifdef RELEASE_BUILD #ifdef RELEASE_BUILD