Index: Source/core/rendering/RenderBlockLineLayout.cpp |
diff --git a/Source/core/rendering/RenderBlockLineLayout.cpp b/Source/core/rendering/RenderBlockLineLayout.cpp |
index 3e939f1cfb35d94ce1e014fe486c6511df8a9609..9a0ad100e81ea9e56c03e469a9fc61076991cbd1 100644 |
--- a/Source/core/rendering/RenderBlockLineLayout.cpp |
+++ b/Source/core/rendering/RenderBlockLineLayout.cpp |
@@ -1070,9 +1070,8 @@ void RenderBlockFlow::markDirtyFloatsForPaintInvalidation(Vector<FloatWithRect>& |
for (size_t i = 0; i < floatCount; ++i) { |
if (!floats[i].everHadLayout) { |
RenderBox* f = floats[i].object; |
- if (!f->x() && !f->y() && f->checkForPaintInvalidation()) { |
+ if (!f->x() && !f->y()) |
f->setShouldDoFullPaintInvalidation(); |
- } |
} |
} |
} |