| Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| index dd5530407f85345862ddb6040de5cd5eb7935732..a8374055f0fff78755a149b97dd475423b3aa86f 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| @@ -1442,7 +1442,8 @@ void LayoutTable::invalidatePaintOfSubtreesIfNeeded(const PaintInvalidationState
|
| // Table cells paint container's background on the container's backing instead of its own (if any),
|
| // so we must invalidate it by the containers.
|
| bool invalidated = false;
|
| - if ((columnGroup && columnGroup->shouldDoFullPaintInvalidation())
|
| + if (childPaintInvalidationState.forcedSubtreeFullInvalidationWithinContainer()
|
| + || (columnGroup && columnGroup->shouldDoFullPaintInvalidation())
|
| || (column && column->shouldDoFullPaintInvalidation())
|
| || section->shouldDoFullPaintInvalidation()) {
|
| section->invalidateDisplayItemClient(*cell);
|
|
|