| Index: Source/core/rendering/RenderLayerScrollableArea.cpp
|
| diff --git a/Source/core/rendering/RenderLayerScrollableArea.cpp b/Source/core/rendering/RenderLayerScrollableArea.cpp
|
| index dc9cf2a34c7615bec5b1c374da51311be747ff08..42704e6ae4c9249aa276766f7cde3db1cb5dc3d8 100644
|
| --- a/Source/core/rendering/RenderLayerScrollableArea.cpp
|
| +++ b/Source/core/rendering/RenderLayerScrollableArea.cpp
|
| @@ -1398,6 +1398,7 @@ void RenderLayerScrollableArea::resize(const PlatformEvent& evt, const LayoutSiz
|
| LayoutRect RenderLayerScrollableArea::exposeRect(const LayoutRect& rect, const ScrollAlignment& alignX, const ScrollAlignment& alignY)
|
| {
|
| LayoutRect localExposeRect(box().absoluteToLocalQuad(FloatQuad(FloatRect(rect)), UseTransforms).boundingBox());
|
| + localExposeRect.move(-box().borderLeft(), -box().borderTop());
|
| LayoutRect layerBounds(0, 0, box().clientWidth(), box().clientHeight());
|
| LayoutRect r = ScrollAlignment::getRectToExpose(layerBounds, localExposeRect, alignX, alignY);
|
|
|
|
|