| Index: content/browser/web_contents/touch_editable_impl_aura.cc
|
| diff --git a/content/browser/web_contents/touch_editable_impl_aura.cc b/content/browser/web_contents/touch_editable_impl_aura.cc
|
| index be0addfae67c83d51d9456f7796cdb56313f5fce..aeab27740234626438e362459b40954c2a39b6cc 100644
|
| --- a/content/browser/web_contents/touch_editable_impl_aura.cc
|
| +++ b/content/browser/web_contents/touch_editable_impl_aura.cc
|
| @@ -159,7 +159,8 @@ bool TouchEditableImplAura::HandleInputEvent(const ui::Event* event) {
|
| gfx::Rect focus(selection_focus_rect_.origin(),
|
| gfx::Size(1, selection_focus_rect_.height()));
|
| gfx::Rect selection_rect = gfx::UnionRects(anchor, focus);
|
| - if (selection_rect.Contains(gesture_event->location())) {
|
| + if (selection_rect.Contains(
|
| + gfx::ToFlooredPoint(gesture_event->location()))) {
|
| StartTouchEditing();
|
| return true;
|
| }
|
|
|