| Index: Source/WebCore/rendering/RenderLayerCompositor.cpp
|
| ===================================================================
|
| --- Source/WebCore/rendering/RenderLayerCompositor.cpp (revision 139631)
|
| +++ Source/WebCore/rendering/RenderLayerCompositor.cpp (working copy)
|
| @@ -1169,6 +1169,9 @@
|
| if (ScrollingCoordinator* scrollingCoordinator = this->scrollingCoordinator()) {
|
| if (scrollingCoordinator->coordinatesScrollingForFrameView(frameView))
|
| return;
|
| + if (Settings* settings = m_renderView->document()->settings())
|
| + if (settings->compositedScrollingForFramesEnabled())
|
| + scrollingCoordinator->scrollableAreaScrollLayerDidChange(frameView, m_scrollLayer.get());
|
| }
|
|
|
| m_scrollLayer->setPosition(FloatPoint(-scrollPosition.x(), -scrollPosition.y()));
|
|
|