Chromium Code Reviews| 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 8494a860f4d09910b458768c54de89b22fd622f5..e5674e4298aa6d2850f8313e8671d4cb233cf5d2 100644 |
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp |
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp |
| @@ -2069,7 +2069,7 @@ bool FrameView::ComputeCompositedSelection(LocalFrame& frame, |
| const VisibleSelection& visible_selection = |
| frame.Selection().ComputeVisibleSelectionInDOMTree(); |
| - if (visible_selection.IsNone() || !frame.Selection().IsHandleVisible()) |
| + if (!frame.Selection().IsHandleVisible() || frame.Selection().IsHidden()) |
|
yosin_UTC9
2017/05/16 01:13:09
Thanks for changing order. |FS::IsHidden()| is not
|
| return false; |
| // Non-editable caret selections lack any kind of UI affordance, and |