Index: Source/core/paint/TableSectionPainter.cpp |
diff --git a/Source/core/paint/TableSectionPainter.cpp b/Source/core/paint/TableSectionPainter.cpp |
index 8b2f8da3ad4f91ffbe68626cdade649c33a6aeda..5866fdbbd5c433fd0dd0740e116065e32ea0a5de 100644 |
--- a/Source/core/paint/TableSectionPainter.cpp |
+++ b/Source/core/paint/TableSectionPainter.cpp |
@@ -5,6 +5,7 @@ |
#include "config.h" |
#include "core/paint/TableSectionPainter.h" |
+#include "core/paint/ObjectPainter.h" |
#include "core/paint/TableRowPainter.h" |
#include "core/rendering/GraphicsContextAnnotator.h" |
#include "core/rendering/PaintInfo.h" |
@@ -39,7 +40,7 @@ void TableSectionPainter::paint(PaintInfo& paintInfo, const LayoutPoint& paintOf |
} |
if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && m_renderTableSection.style()->visibility() == VISIBLE) |
- m_renderTableSection.paintOutline(paintInfo, LayoutRect(adjustedPaintOffset, m_renderTableSection.size())); |
+ ObjectPainter(m_renderTableSection).paintOutline(paintInfo, LayoutRect(adjustedPaintOffset, m_renderTableSection.size())); |
} |
static inline bool compareCellPositions(RenderTableCell* elem1, RenderTableCell* elem2) |