Index: third_party/WebKit/Source/core/editing/SelectionController.cpp |
diff --git a/third_party/WebKit/Source/core/editing/SelectionController.cpp b/third_party/WebKit/Source/core/editing/SelectionController.cpp |
index 2278ead918f8a85157197f8c055510e3153ff41c..a534e24a9cc1ff155c6c03eebd96b7ed393cf48b 100644 |
--- a/third_party/WebKit/Source/core/editing/SelectionController.cpp |
+++ b/third_party/WebKit/Source/core/editing/SelectionController.cpp |
@@ -583,7 +583,7 @@ bool SelectionController::handleGestureLongPress(const PlatformGestureEvent& ges |
return false; |
Node* innerNode = hitTestResult.innerNode(); |
- bool innerNodeIsSelectable = innerNode && (innerNode->isContentEditable() || innerNode->canStartSelection()); |
+ bool innerNodeIsSelectable = innerNode && (isContentEditable(*innerNode) || innerNode->canStartSelection()); |
if (!innerNodeIsSelectable) |
return false; |