| Index: third_party/WebKit/Source/core/dom/Element.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
|
| index 316ab46c290824bdda94c157bfd1b715590322bb..9499e154d4ea94fdbde951067a1528db51b1d09a 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -570,7 +570,7 @@ void Element::nativeApplyScroll(ScrollState& scrollState)
|
| // Handle the scrollingElement separately, as it scrolls the viewport.
|
| if (this == document().scrollingElement()) {
|
| FloatSize delta(deltaX, deltaY);
|
| - if (document().frame()->applyScrollDelta(delta, scrollState.isBeginning()).didScroll()) {
|
| + if (document().frame()->applyScrollDelta(ScrollByPrecisePixel, delta, scrollState.isBeginning()).didScroll()) {
|
| scrolled = true;
|
| scrollState.consumeDeltaNative(scrollState.deltaX(), scrollState.deltaY());
|
| }
|
|
|