| Index: third_party/WebKit/Source/core/paint/TableCellPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/TableCellPainter.cpp b/third_party/WebKit/Source/core/paint/TableCellPainter.cpp
|
| index 0aa28e15f34b871ca54fcc9d3549139636ddbbfc..3040280b5b3610520335e855b61d2d029d7ce7cd 100644
|
| --- a/third_party/WebKit/Source/core/paint/TableCellPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/TableCellPainter.cpp
|
| @@ -138,7 +138,7 @@ void TableCellPainter::paintContainerBackgroundBehindCell(const PaintInfo& paint
|
| return;
|
|
|
| LayoutTable* table = m_layoutTableCell.table();
|
| - if (!table->collapseBorders() && m_layoutTableCell.style()->emptyCells() == EmptyCellsHide && !m_layoutTableCell.firstChild())
|
| + if (!table->collapseBorders() && m_layoutTableCell.style()->emptyCells() == EEmptyCells::Hide && !m_layoutTableCell.firstChild())
|
| return;
|
|
|
| if (LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(paintInfo.context, m_layoutTableCell, type))
|
| @@ -173,7 +173,7 @@ void TableCellPainter::paintBackground(const PaintInfo& paintInfo, const LayoutR
|
| void TableCellPainter::paintBoxDecorationBackground(const PaintInfo& paintInfo, const LayoutPoint& paintOffset)
|
| {
|
| LayoutTable* table = m_layoutTableCell.table();
|
| - if (!table->collapseBorders() && m_layoutTableCell.style()->emptyCells() == EmptyCellsHide && !m_layoutTableCell.firstChild())
|
| + if (!table->collapseBorders() && m_layoutTableCell.style()->emptyCells() == EEmptyCells::Hide && !m_layoutTableCell.firstChild())
|
| return;
|
|
|
| bool needsToPaintBorder = m_layoutTableCell.styleRef().hasBorderDecoration() && !table->collapseBorders();
|
| @@ -206,7 +206,7 @@ void TableCellPainter::paintMask(const PaintInfo& paintInfo, const LayoutPoint&
|
| return;
|
|
|
| LayoutTable* tableElt = m_layoutTableCell.table();
|
| - if (!tableElt->collapseBorders() && m_layoutTableCell.style()->emptyCells() == EmptyCellsHide && !m_layoutTableCell.firstChild())
|
| + if (!tableElt->collapseBorders() && m_layoutTableCell.style()->emptyCells() == EEmptyCells::Hide && !m_layoutTableCell.firstChild())
|
| return;
|
|
|
| if (LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(paintInfo.context, m_layoutTableCell, paintInfo.phase))
|
|
|