Index: Source/core/rendering/RenderBlockLineLayout.cpp |
diff --git a/Source/core/rendering/RenderBlockLineLayout.cpp b/Source/core/rendering/RenderBlockLineLayout.cpp |
index 29d49ca4d5cf24b47b44dc20b0d241d0c173cebe..c24ddbb509fc4eb132a86c09a13d342041e16f6f 100644 |
--- a/Source/core/rendering/RenderBlockLineLayout.cpp |
+++ b/Source/core/rendering/RenderBlockLineLayout.cpp |
@@ -1626,7 +1626,7 @@ void RenderBlockFlow::repaintDirtyFloats(Vector<FloatWithRect>& floats) |
for (size_t i = 0; i < floatCount; ++i) { |
if (!floats[i].everHadLayout) { |
RenderBox* f = floats[i].object; |
- if (!f->x() && !f->y() && f->checkForRepaintDuringLayout()) { |
+ if (!f->x() && !f->y() && f->checkForRepaint()) { |
if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled()) |
f->setShouldDoFullRepaintAfterLayout(true); |
else |