| Index: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| index 46c3df19cb4b0ebfa754e0fe781e953632307174..9e4dc358c27eb171a3f3046d40b127b1ff95218b 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp
|
| @@ -2064,11 +2064,11 @@ void AXLayoutObject::setSelection(const AXRange& selection)
|
| if (selection.anchorOffset <= selection.focusOffset) {
|
| textControl->setSelectionRange(
|
| selection.anchorOffset, selection.focusOffset,
|
| - SelectionHasForwardDirection, NotDispatchSelectEvent);
|
| + SelectionHasForwardDirection);
|
| } else {
|
| textControl->setSelectionRange(
|
| selection.focusOffset, selection.anchorOffset,
|
| - SelectionHasBackwardDirection, NotDispatchSelectEvent);
|
| + SelectionHasBackwardDirection);
|
| }
|
| return;
|
| }
|
|
|