| Index: third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h b/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h
|
| index 0d0e74b850ab14df961508652266151c0a43a76c..5f337985425fd5451ddfe4ab556c8377b6e2b946 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h
|
| @@ -34,12 +34,12 @@ protected:
|
|
|
| void clearPaintInvalidationFlags(const PaintInvalidationState& paintInvalidationState) override
|
| {
|
| - LayoutBox::clearPaintInvalidationFlags(paintInvalidationState);
|
| m_backgroundChangedSinceLastPaintInvalidation = false;
|
| + LayoutBox::clearPaintInvalidationFlags(paintInvalidationState);
|
| }
|
|
|
| #if ENABLE(ASSERT)
|
| - bool paintInvalidationStateIsDirty() const override { return m_backgroundChangedSinceLastPaintInvalidation || LayoutBox::paintInvalidationStateIsDirty(); }
|
| + bool paintInvalidationFlagsAreDirty() const override { return m_backgroundChangedSinceLastPaintInvalidation || LayoutBox::paintInvalidationFlagsAreDirty(); }
|
| #endif
|
|
|
| private:
|
|
|