| Index: Source/core/layout/compositing/DeprecatedPaintLayerCompositor.cpp
|
| diff --git a/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.cpp b/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.cpp
|
| index 9efd46d5e3b72090c2cb8767efc905fe9117bb0c..ee92f0cab901c066965a2548ae6fe005c79852c2 100644
|
| --- a/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.cpp
|
| +++ b/Source/core/layout/compositing/DeprecatedPaintLayerCompositor.cpp
|
| @@ -535,8 +535,8 @@ void DeprecatedPaintLayerCompositor::frameViewDidChangeSize()
|
| {
|
| if (m_containerLayer) {
|
| FrameView* frameView = m_layoutView.frameView();
|
| - m_containerLayer->setSize(frameView->unscaledVisibleContentSize());
|
| - m_overflowControlsHostLayer->setSize(frameView->unscaledVisibleContentSize(IncludeScrollbars));
|
| + m_containerLayer->setSize(frameView->visibleContentSize());
|
| + m_overflowControlsHostLayer->setSize(frameView->visibleContentSize(IncludeScrollbars));
|
|
|
| frameViewDidScroll();
|
| updateOverflowControlsLayers();
|
| @@ -762,8 +762,8 @@ void DeprecatedPaintLayerCompositor::updateRootLayerPosition()
|
| }
|
| if (m_containerLayer) {
|
| FrameView* frameView = m_layoutView.frameView();
|
| - m_containerLayer->setSize(frameView->unscaledVisibleContentSize());
|
| - m_overflowControlsHostLayer->setSize(frameView->unscaledVisibleContentSize(IncludeScrollbars));
|
| + m_containerLayer->setSize(frameView->visibleContentSize());
|
| + m_overflowControlsHostLayer->setSize(frameView->visibleContentSize(IncludeScrollbars));
|
| }
|
| }
|
|
|
|
|