| Index: third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp b/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
|
| index c6214833bd25037fd853e2d1d382ab4a323a9e61..ac4df4fdb8bae1a5aca95dd459a89891aa080541 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
|
| @@ -2068,13 +2068,13 @@ void LayoutBlockFlow::setShouldDoFullPaintInvalidationForFirstLine()
|
| firstRootBox->setShouldDoFullPaintInvalidationRecursively();
|
| }
|
|
|
| -bool LayoutBlockFlow::paintedOutputOfObjectHasNoEffect() const
|
| +bool LayoutBlockFlow::paintedOutputOfObjectHasNoEffectRegardlessOfSize() const
|
| {
|
| // LayoutBlockFlow is in charge of paint invalidation of the first line.
|
| if (firstLineBox())
|
| return false;
|
|
|
| - return LayoutBlock::paintedOutputOfObjectHasNoEffect();
|
| + return LayoutBlock::paintedOutputOfObjectHasNoEffectRegardlessOfSize();
|
| }
|
|
|
| PaintInvalidationReason LayoutBlockFlow::invalidatePaintIfNeeded(const PaintInvalidationState& paintInvalidationState)
|
|
|