| Index: third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/TableRowPainter.cpp b/third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| index b7c333e0b4a8f13c7777cdf8bc27d333803d3d09..b049d39486779ef87113d97c900a3dfe842284ed 100644
|
| --- a/third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| @@ -27,7 +27,7 @@ void TableRowPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paint
|
| bool shouldPaintCells = paintInfo.phase != PaintPhaseSelfBlockBackgroundOnly;
|
| for (LayoutTableCell* cell = m_layoutTableRow.firstCell(); cell; cell = cell->nextCell()) {
|
| if (shouldPaintRowBackground)
|
| - TableCellPainter(*cell).paintBackgroundsBehindCell(paintInfoForCells, paintOffset, &m_layoutTableRow, DisplayItem::TableCellBackgroundFromRow);
|
| + TableCellPainter(*cell).paintBackgroundsBehindCell(paintInfoForCells, paintOffset, m_layoutTableRow, DisplayItem::TableCellBackgroundFromRow);
|
| if (shouldPaintCells && !cell->hasSelfPaintingLayer())
|
| cell->paint(paintInfoForCells, paintOffset);
|
| }
|
|
|