| Index: Source/core/rendering/RenderTableCol.cpp
|
| diff --git a/Source/core/rendering/RenderTableCol.cpp b/Source/core/rendering/RenderTableCol.cpp
|
| index b27a30d75aa375f004dd28f46fa0929c7ed079bd..7d279278534b2987ac9293973c839be5714db3ba 100644
|
| --- a/Source/core/rendering/RenderTableCol.cpp
|
| +++ b/Source/core/rendering/RenderTableCol.cpp
|
| @@ -94,7 +94,7 @@
|
| return isTableColumnGroup();
|
| }
|
|
|
| -LayoutRect RenderTableCol::clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer) const
|
| +LayoutRect RenderTableCol::clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, const PaintInvalidationState* paintInvalidationState) const
|
| {
|
| // For now, just repaint the whole table.
|
| // FIXME: Find a better way to do this, e.g., need to repaint all the cells that we
|
| @@ -104,7 +104,7 @@
|
| RenderTable* parentTable = table();
|
| if (!parentTable)
|
| return LayoutRect();
|
| - return parentTable->clippedOverflowRectForPaintInvalidation(paintInvalidationContainer);
|
| + return parentTable->clippedOverflowRectForPaintInvalidation(paintInvalidationContainer, paintInvalidationState);
|
| }
|
|
|
| void RenderTableCol::imageChanged(WrappedImagePtr, const IntRect*)
|
|
|