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 6c14e2660979408fa04745cdcf64e4c062fea5bc..08a4a42554931980a65d4ca38777bc71f9627318 100644 |
--- a/third_party/WebKit/Source/core/paint/TableCellPainter.cpp |
+++ b/third_party/WebKit/Source/core/paint/TableCellPainter.cpp |
@@ -189,7 +189,7 @@ void TableCellPainter::paintBoxDecorationBackground(const PaintInfo& paintInfo, |
return; |
bool needsToPaintBorder = m_layoutTableCell.styleRef().hasBorderDecoration() && !table->collapseBorders(); |
- if (!m_layoutTableCell.hasBackground() && !m_layoutTableCell.styleRef().boxShadow() && !needsToPaintBorder) |
+ if (!m_layoutTableCell.hasBackground() && !m_layoutTableCell.styleRef().hasBackdropFilter() && !m_layoutTableCell.styleRef().boxShadow() && !needsToPaintBorder) |
return; |
if (LayoutObjectDrawingRecorder::useCachedDrawingIfPossible(paintInfo.context, m_layoutTableCell, DisplayItem::BoxDecorationBackground, paintOffset)) |