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 03b79473ece791291c730efa8d808e6cb86a0767..d0e585f51a76e6b003f5a27bb108f1f5a84b0781 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp |
@@ -2062,13 +2062,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) |