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 683101cec9c7be27f3dfb42418bf43128124e880..575fd6d01ed1187d75b7dd02eb6a1c13e0e035e0 100644 |
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp |
@@ -1377,7 +1377,7 @@ Node* WebViewImpl::bestTapNode(const GestureEventWithHitTestResults& targetedTap |
} |
// Editable nodes should not be highlighted (e.g., <input>) |
- if (bestTouchNode->hasEditableStyle()) |
+ if (hasEditableStyle(*bestTouchNode)) |
return nullptr; |
Node* cursorDefiningAncestor = |