| Index: Source/core/page/EventHandler.cpp
|
| diff --git a/Source/core/page/EventHandler.cpp b/Source/core/page/EventHandler.cpp
|
| index 6cfb5ac4da40857cf04b2ad674cc0e7b2891759a..17680fb568c943022b1296e3bf08c7893a8f51ad 100644
|
| --- a/Source/core/page/EventHandler.cpp
|
| +++ b/Source/core/page/EventHandler.cpp
|
| @@ -986,7 +986,7 @@ bool EventHandler::bubblingScroll(ScrollDirection direction, ScrollGranularity g
|
| if (view) {
|
| ScrollDirectionPhysical physicalDirection =
|
| toPhysicalDirection(direction, view->isVerticalDocument(), view->isFlippedDocument());
|
| - if (view->scrollableArea()->scroll(physicalDirection, granularity)) {
|
| + if (view->scrollableArea()->userScroll(physicalDirection, granularity)) {
|
| setFrameWasScrolledByUser();
|
| return true;
|
| }
|
| @@ -3654,7 +3654,7 @@ void EventHandler::defaultSpaceEventHandler(KeyboardEvent* event)
|
| ScrollDirectionPhysical physicalDirection =
|
| toPhysicalDirection(direction, view->isVerticalDocument(), view->isFlippedDocument());
|
|
|
| - if (view->scrollableArea()->scroll(physicalDirection, ScrollByPage))
|
| + if (view->scrollableArea()->userScroll(physicalDirection, ScrollByPage))
|
| event->setDefaultHandled();
|
| }
|
|
|
|
|