| Index: Source/core/rendering/RenderObject.cpp
|
| diff --git a/Source/core/rendering/RenderObject.cpp b/Source/core/rendering/RenderObject.cpp
|
| index 90168b68e03d29ea4969103e9811de8403fad49b..cb6890fc7fbb2181ff07bf906bad36f7c4adef6c 100644
|
| --- a/Source/core/rendering/RenderObject.cpp
|
| +++ b/Source/core/rendering/RenderObject.cpp
|
| @@ -1668,7 +1668,7 @@ InvalidationReason RenderObject::invalidatePaintIfNeeded(const RenderLayerModelO
|
| return invalidationReason;
|
|
|
| if (invalidationReason == InvalidationIncremental) {
|
| - incrementallyInvalidatePaint(paintInvalidationContainer, oldBounds, newBounds);
|
| + incrementallyInvalidatePaint(paintInvalidationContainer, oldBounds, newBounds, newLocation);
|
| return invalidationReason;
|
| }
|
|
|
| @@ -1717,7 +1717,7 @@ InvalidationReason RenderObject::getPaintInvalidationReason(const RenderLayerMod
|
| return InvalidationIncremental;
|
| }
|
|
|
| -void RenderObject::incrementallyInvalidatePaint(const RenderLayerModelObject& paintInvalidationContainer, const LayoutRect& oldBounds, const LayoutRect& newBounds)
|
| +void RenderObject::incrementallyInvalidatePaint(const RenderLayerModelObject& paintInvalidationContainer, const LayoutRect& oldBounds, const LayoutRect& newBounds, const LayoutPoint& positionFromPaintInvalidationContainer)
|
| {
|
| ASSERT(oldBounds.location() == newBounds.location());
|
|
|
|
|