| Index: third_party/WebKit/Source/core/frame/FrameView.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.h b/third_party/WebKit/Source/core/frame/FrameView.h
|
| index 30ff045699f08d3c1a52f83cbb857c0088533edc..8a9014f6672105b1ace542b591a5a312279cc6f4 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.h
|
| @@ -356,7 +356,7 @@ public:
|
| // commit scroll offsets before a WebView::resize occurs, we need to adjust
|
| // our scroll extents to prevent clamping the scroll offsets.
|
| void setTopControlsViewportAdjustment(float);
|
| - IntSize topControlsSize() const { return IntSize(0, roundf(m_topControlsViewportAdjustment)); }
|
| + IntSize topControlsSize() const { return IntSize(0, ceilf(m_topControlsViewportAdjustment)); }
|
|
|
| IntPoint maximumScrollPosition() const override;
|
|
|
|
|