Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Unified Diff: Source/core/rendering/RenderTableSection.cpp

Issue 647903002: Remove RenderObject::checkForPaintInvalidation() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: For landing Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/RenderTableRow.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderTableSection.cpp
diff --git a/Source/core/rendering/RenderTableSection.cpp b/Source/core/rendering/RenderTableSection.cpp
index 9798ab87a229cc917135d91d964a4b6988882107..21279898296f230b6f76c4d33b7c69fd928d28e7 100644
--- a/Source/core/rendering/RenderTableSection.cpp
+++ b/Source/core/rendering/RenderTableSection.cpp
@@ -1058,7 +1058,7 @@ void RenderTableSection::layoutRows()
// If the child moved, we have to issue paint invalidations to it as well as any floating/positioned
// descendants. An exception is if we need a layout. In this case, we know we're going to
// issue paint invalidations ourselves (and the child) anyway.
- if (!table()->selfNeedsLayout() && cell->checkForPaintInvalidation())
+ if (!table()->selfNeedsLayout())
cell->setMayNeedPaintInvalidation(true);
}
}
« no previous file with comments | « Source/core/rendering/RenderTableRow.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698