Index: third_party/WebKit/Source/web/WebViewImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp |
index 2ff804ebb0cef02fe89bcd33c78e41db630d25b3..a3da50e124ea7cb0b24d896ad3240194b60f76d5 100644 |
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp |
@@ -2845,7 +2845,7 @@ bool WebViewImpl::scrollFocusedNodeIntoRect(const WebRect& rectInViewport) |
// zoom in if the user won't be able to zoom out. e.g if the textbox is within a |
// touch-action: none container the user can't zoom back out. |
TouchAction action = TouchActionUtil::computeEffectiveTouchAction(*element); |
- if (action != TouchActionAuto && !(action & TouchActionPinchZoom)) |
+ if (!(action & TouchActionPinchZoom)) |
zoomInToLegibleScale = false; |
} |