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 c1e68547039fc4ca718dc6907479a62c9c002b67..c6dff69a87efd1c49315fcdf3ca44e99aadf1659 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; |