Index: Source/core/rendering/RenderTableRow.cpp |
diff --git a/Source/core/rendering/RenderTableRow.cpp b/Source/core/rendering/RenderTableRow.cpp |
index 5a02b343ff7e0bb8db7dfab7ecd2b1364ec236be..94583ecdb47a1cad474a67463044c6a1139f51be 100644 |
--- a/Source/core/rendering/RenderTableRow.cpp |
+++ b/Source/core/rendering/RenderTableRow.cpp |
@@ -187,7 +187,7 @@ void RenderTableRow::layout() |
// FIXME: Is this needed with Repaint After Layout? |
cell->setShouldDoFullPaintInvalidationAfterLayout(true); |
} else { |
- cell->repaint(); |
+ cell->paintInvalidationForWholeRenderer(); |
} |
} |
} |
@@ -244,7 +244,7 @@ void RenderTableRow::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) |
void RenderTableRow::imageChanged(WrappedImagePtr, const IntRect*) |
{ |
// FIXME: Examine cells and repaint only the rect the image paints in. |
- repaint(); |
+ paintInvalidationForWholeRenderer(); |
} |
RenderTableRow* RenderTableRow::createAnonymous(Document* document) |