Index: Source/core/css/CSSComputedStyleDeclaration.cpp |
diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp |
index 2c331a96809758271c39740d0ef6b303e7f0de5d..1871ca32b9920dd88b3c79e7dd47d704a97aadf4 100644 |
--- a/Source/core/css/CSSComputedStyleDeclaration.cpp |
+++ b/Source/core/css/CSSComputedStyleDeclaration.cpp |
@@ -323,7 +323,9 @@ static const CSSPropertyID computedProperties[] = { |
CSSPropertyWebkitShapeInside, |
CSSPropertyWebkitShapeOutside, |
#endif |
+#if ENABLE(TOUCH_EVENTS) |
CSSPropertyWebkitTapHighlightColor, |
+#endif |
CSSPropertyWebkitTextCombine, |
CSSPropertyWebkitTextDecorationsInEffect, |
CSSPropertyWebkitTextEmphasisColor, |
@@ -2432,8 +2434,10 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(CSSPropert |
} |
case CSSPropertyWebkitRtlOrdering: |
return cssValuePool().createIdentifierValue(style->rtlOrdering() ? CSSValueVisual : CSSValueLogical); |
+#if ENABLE(TOUCH_EVENTS) |
case CSSPropertyWebkitTapHighlightColor: |
return currentColorOrValidColor(style.get(), style->tapHighlightColor()); |
+#endif |
case CSSPropertyWebkitUserDrag: |
return cssValuePool().createValue(style->userDrag()); |
case CSSPropertyWebkitUserSelect: |