| 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..cc7809a74e93013a20bf67742bf24de498ffe133 100644
|
| --- a/third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/TableRowPainter.cpp
|
| @@ -23,7 +23,7 @@ void TableRowPainter::paint(const PaintInfo& paintInfo, const LayoutPoint& paint
|
| return;
|
|
|
| PaintInfo paintInfoForCells = paintInfo.forDescendants();
|
| - bool shouldPaintRowBackground = shouldPaintSelfBlockBackground(paintInfo.phase) && m_layoutTableRow.hasBackground();
|
| + bool shouldPaintRowBackground = shouldPaintSelfBlockBackground(paintInfo.phase) && (m_layoutTableRow.hasBackground() || m_layoutTableRow.styleRef().hasBackdropFilter());
|
| bool shouldPaintCells = paintInfo.phase != PaintPhaseSelfBlockBackgroundOnly;
|
| for (LayoutTableCell* cell = m_layoutTableRow.firstCell(); cell; cell = cell->nextCell()) {
|
| if (shouldPaintRowBackground)
|
|
|