| Index: Source/core/paint/TablePainter.cpp
|
| diff --git a/Source/core/paint/TablePainter.cpp b/Source/core/paint/TablePainter.cpp
|
| index adb497e6f09c98670b15e12d3fecec3460af8583..f2bfadd5059257d3afeed092fe28be84b9eed0d3 100644
|
| --- a/Source/core/paint/TablePainter.cpp
|
| +++ b/Source/core/paint/TablePainter.cpp
|
| @@ -40,7 +40,7 @@ void TablePainter::paintObject(const PaintInfo& paintInfo, const LayoutPoint& pa
|
| info.phase = paintPhase;
|
| info.updatePaintingRootForChildren(&m_layoutTable);
|
|
|
| - for (RenderObject* child = m_layoutTable.firstChild(); child; child = child->nextSibling()) {
|
| + for (LayoutObject* child = m_layoutTable.firstChild(); child; child = child->nextSibling()) {
|
| if (child->isBox() && !toRenderBox(child)->hasSelfPaintingLayer() && (child->isTableSection() || child->isTableCaption())) {
|
| LayoutPoint childPoint = m_layoutTable.flipForWritingModeForChild(toRenderBox(child), paintOffset);
|
| child->paint(info, childPoint);
|
|
|