| Index: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| index 2d066f050ef336ac5ad7a4cf1a1295273526d5ba..baff015374d53d55dd57f89f83bc7ec1b7fb1fcb 100644
|
| --- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| +++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
|
| @@ -945,14 +945,17 @@ static CSSValue* touchActionFlagsToCSSValue(TouchAction touchAction)
|
| list->append(*CSSPrimitiveValue::createIdentifier(CSSValuePanLeft));
|
| else if (touchAction & TouchActionPanRight)
|
| list->append(*CSSPrimitiveValue::createIdentifier(CSSValuePanRight));
|
| -
|
| if ((touchAction & TouchActionPanY) == TouchActionPanY)
|
| list->append(*CSSPrimitiveValue::createIdentifier(CSSValuePanY));
|
| else if (touchAction & TouchActionPanUp)
|
| list->append(*CSSPrimitiveValue::createIdentifier(CSSValuePanUp));
|
| else if (touchAction & TouchActionPanDown)
|
| list->append(*CSSPrimitiveValue::createIdentifier(CSSValuePanDown));
|
| +
|
| + if ((touchAction & TouchActionPinchZoom) == TouchActionPinchZoom)
|
| + list->append(*CSSPrimitiveValue::createIdentifier(CSSValuePinchZoom));
|
| }
|
| +
|
| ASSERT(list->length());
|
| return list;
|
| }
|
|
|