| Index: Source/core/page/EventHandler.cpp
|
| diff --git a/Source/core/page/EventHandler.cpp b/Source/core/page/EventHandler.cpp
|
| index 824ae35d027e5e07ee0809738e5ffff2216c2d3b..4041de47d946c504de764d0fe6ee4c858bd43160 100644
|
| --- a/Source/core/page/EventHandler.cpp
|
| +++ b/Source/core/page/EventHandler.cpp
|
| @@ -2445,7 +2445,8 @@ bool EventHandler::handleGestureScrollUpdate(const PlatformGestureEvent& gesture
|
| RefPtrWillBeRawPtr<FrameView> protector(m_frame->view());
|
|
|
| Node* stopNode = nullptr;
|
| - bool scrollShouldNotPropagate = gestureEvent.type() == PlatformEvent::GestureScrollUpdateWithoutPropagation;
|
| + bool scrollShouldNotPropagate = gestureEvent.type() == PlatformEvent::GestureScrollUpdateWithoutPropagation
|
| + || (gestureEvent.type() == PlatformEvent::GestureScrollUpdate && gestureEvent.preventPropagation());
|
|
|
| // Try to send the event to the correct view.
|
| if (passScrollGestureEventToWidget(gestureEvent, renderer)) {
|
|
|