Index: third_party/WebKit/Source/core/frame/FrameView.cpp |
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp |
index e2dd2aa4b213b6a509bff7794b8855602d7f1841..6c40a26c8c5adb57d325893bf0917ca865f42c4a 100644 |
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp |
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp |
@@ -1754,7 +1754,7 @@ bool FrameView::computeCompositedSelection(LocalFrame& frame, |
return false; |
const VisibleSelection& visibleSelection = frame.selection().selection(); |
- if (visibleSelection.isNone()) |
+ if (visibleSelection.isNone() || !visibleSelection.isHandleVisible()) |
return false; |
// Non-editable caret selections lack any kind of UI affordance, and |