| Index: third_party/WebKit/Source/core/input/EventHandler.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| index 0d9a2295fe6db2c9a95e7ff31ba0b15200d02843..b8f758b78d64d1e58e66818c851c655141db2b9c 100644
|
| --- a/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| +++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| @@ -555,7 +555,10 @@ OptionalCursor EventHandler::selectAutoCursor(const HitTestResult& result,
|
| if (m_mouseEventManager->mousePressed() &&
|
| selectionController().mouseDownMayStartSelect() &&
|
| !m_mouseEventManager->mouseDownMayStartDrag() &&
|
| - !m_frame->selection().isNone() && !m_capturingMouseEventsNode) {
|
| + !m_frame->selection()
|
| + .computeVisibleSelectionInDOMTreeDeprecated()
|
| + .isNone() &&
|
| + !m_capturingMouseEventsNode) {
|
| return iBeam;
|
| }
|
|
|
|
|