Index: Source/WebCore/rendering/RenderTable.cpp |
=================================================================== |
--- Source/WebCore/rendering/RenderTable.cpp (revision 123228) |
+++ Source/WebCore/rendering/RenderTable.cpp (working copy) |
@@ -577,9 +577,11 @@ |
info.phase = paintPhase; |
info.updatePaintingRootForChildren(this); |
+ IntPoint alignedOffset = roundedIntPoint(paintOffset); |
+ |
for (RenderObject* child = firstChild(); child; child = child->nextSibling()) { |
if (child->isBox() && !toRenderBox(child)->hasSelfPaintingLayer() && (child->isTableSection() || child->isTableCaption())) { |
- LayoutPoint childPoint = flipForWritingModeForChild(toRenderBox(child), paintOffset); |
+ LayoutPoint childPoint = flipForWritingModeForChild(toRenderBox(child), alignedOffset); |
child->paint(info, childPoint); |
} |
} |