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 652c7083354b8742e31f17c2ec36f0a5e908576a..e39211266c745b32a0f710f20a3d3f4b2bab16c7 100644 |
--- a/third_party/WebKit/Source/core/dom/Element.cpp |
+++ b/third_party/WebKit/Source/core/dom/Element.cpp |
@@ -571,7 +571,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()); |
} |