Chromium Code Reviews| Index: Source/modules/accessibility/AXObject.cpp |
| diff --git a/Source/modules/accessibility/AXObject.cpp b/Source/modules/accessibility/AXObject.cpp |
| index 21eb762cd0146c48d5b545358409f72b0fd92892..98356a1ddf578970c3b586629d2a2fc682f42f01 100644 |
| --- a/Source/modules/accessibility/AXObject.cpp |
| +++ b/Source/modules/accessibility/AXObject.cpp |
| @@ -1086,7 +1086,7 @@ void AXObject::setScrollOffset(const IntPoint& offset) const |
| if (!area) |
| return; |
| - area->setScrollPosition(DoublePoint(offset.x(), offset.y())); |
| + area->setScrollPosition(DoublePoint(offset.x(), offset.y()), ProgrammaticScroll); |
|
dmazzoni
2015/06/09 19:40:23
What are the implications of this being a programm
bokan
2015/06/09 20:03:01
Hmm...right now the only implication here is which
|
| } |
| // |