| Index: Source/core/css/resolver/StyleBuilderCustom.cpp
|
| diff --git a/Source/core/css/resolver/StyleBuilderCustom.cpp b/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| index 2b6271c4cec25b0ab1ddbb4174e4ee66068c339f..be9ff869e9efbe6a793a61da24de06e2c15d4e85 100644
|
| --- a/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| +++ b/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| @@ -91,7 +91,7 @@ namespace WebCore {
|
|
|
| static Length clipConvertToLength(StyleResolverState& state, CSSPrimitiveValue* value)
|
| {
|
| - return value->convertToLength<FixedIntegerConversion | PercentConversion | FractionConversion | AutoConversion>(state.style(), state.rootElementStyle(), state.style()->effectiveZoom());
|
| + return value->convertToLength<FixedIntegerConversion | PercentConversion | AutoConversion>(state.style(), state.rootElementStyle(), state.style()->effectiveZoom());
|
| }
|
|
|
| void StyleBuilderFunctions::applyInitialCSSPropertyClip(StyleResolverState& state)
|
| @@ -692,7 +692,7 @@ void StyleBuilderFunctions::applyValueCSSPropertyInternalMarqueeIncrement(StyleR
|
| break;
|
| }
|
| } else {
|
| - Length marqueeLength = primitiveValue ? primitiveValue->convertToLength<FixedIntegerConversion | PercentConversion | FractionConversion>(state.style(), state.rootElementStyle()) : Length(Undefined);
|
| + Length marqueeLength = primitiveValue ? primitiveValue->convertToLength<FixedIntegerConversion | PercentConversion>(state.style(), state.rootElementStyle()) : Length(Undefined);
|
| if (!marqueeLength.isUndefined())
|
| state.style()->setMarqueeIncrement(marqueeLength);
|
| }
|
|
|