Index: trunk/Source/core/page/RuntimeCSSEnabled.cpp |
=================================================================== |
--- trunk/Source/core/page/RuntimeCSSEnabled.cpp (revision 157750) |
+++ trunk/Source/core/page/RuntimeCSSEnabled.cpp (working copy) |
@@ -92,11 +92,6 @@ |
CSSPropertyGridTemplate |
}; |
setCSSPropertiesEnabled(cssGridLayoutProperties, WTF_ARRAY_LENGTH(cssGridLayoutProperties), RuntimeEnabledFeatures::cssGridLayoutEnabled()); |
- CSSPropertyID cssObjectFitPositionProperties[] = { |
- CSSPropertyObjectFit, |
- CSSPropertyObjectPosition |
- }; |
- setCSSPropertiesEnabled(cssObjectFitPositionProperties, WTF_ARRAY_LENGTH(cssObjectFitPositionProperties), RuntimeEnabledFeatures::objectFitPositionEnabled()); |
CSSPropertyID animationProperties[] = { |
CSSPropertyAnimation, |
@@ -116,6 +111,7 @@ |
RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyTouchAction, RuntimeEnabledFeatures::cssTouchActionEnabled()); |
RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyPaintOrder, RuntimeEnabledFeatures::svgPaintOrderEnabled()); |
RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyVariable, RuntimeEnabledFeatures::cssVariablesEnabled()); |
+ RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyObjectFit, RuntimeEnabledFeatures::objectFitPositionEnabled()); |
RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyMaskSourceType, RuntimeEnabledFeatures::cssMaskSourceTypeEnabled()); |
} |