| Index: Source/core/css/resolver/StyleBuilderCustom.cpp
|
| diff --git a/Source/core/css/resolver/StyleBuilderCustom.cpp b/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| index 1e786dfbbb9a7671191e9ce74eb6153c9e21c131..04e827845fc4a2a8909d6c2e59bb48fdbcfa4fba 100644
|
| --- a/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| +++ b/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| @@ -614,16 +614,6 @@ void StyleBuilderFunctions::applyValueCSSPropertyTextAlign(StyleResolverState& s
|
| state.style()->setTextAlign(state.parentStyle()->textAlign());
|
| }
|
|
|
| -void StyleBuilderFunctions::applyValueCSSPropertyTextDecoration(StyleResolverState& state, CSSValue* value)
|
| -{
|
| - TextDecoration t = RenderStyle::initialTextDecoration();
|
| - for (CSSValueListIterator i(value); i.hasMore(); i.advance()) {
|
| - CSSValue* item = i.value();
|
| - t |= *toCSSPrimitiveValue(item);
|
| - }
|
| - state.style()->setTextDecoration(t);
|
| -}
|
| -
|
| void StyleBuilderFunctions::applyInheritCSSPropertyTextIndent(StyleResolverState& state)
|
| {
|
| state.style()->setTextIndent(state.parentStyle()->textIndent());
|
| @@ -809,15 +799,6 @@ void StyleBuilderFunctions::applyValueCSSPropertyVerticalAlign(StyleResolverStat
|
| state.style()->setVerticalAlignLength(primitiveValue->convertToLength<FixedConversion | PercentConversion>(state.cssToLengthConversionData()));
|
| }
|
|
|
| -void StyleBuilderFunctions::applyValueCSSPropertyTouchAction(StyleResolverState& state, CSSValue* value)
|
| -{
|
| - TouchAction action = RenderStyle::initialTouchAction();
|
| - for (CSSValueListIterator i(value); i.hasMore(); i.advance())
|
| - action |= *toCSSPrimitiveValue(i.value());
|
| -
|
| - state.style()->setTouchAction(action);
|
| -}
|
| -
|
| static void resetEffectiveZoom(StyleResolverState& state)
|
| {
|
| // Reset the zoom in effect. This allows the setZoom method to accurately compute a new zoom in effect.
|
|
|