Index: Source/core/css/resolver/StyleBuilderCustom.cpp |
diff --git a/Source/core/css/resolver/StyleBuilderCustom.cpp b/Source/core/css/resolver/StyleBuilderCustom.cpp |
old mode 100644 |
new mode 100755 |
index cf643f2e7eb4475c4ddf46ae115e7234c43fd73c..8f239d8cb6440d8e969046c805dcbab652dfb3aa |
--- a/Source/core/css/resolver/StyleBuilderCustom.cpp |
+++ b/Source/core/css/resolver/StyleBuilderCustom.cpp |
@@ -564,6 +564,15 @@ 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. |