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

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

Issue 271803002: [RAL] Fix nested non-composited RenderView repainting (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moar rebaselines Created 6 years, 7 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
Index: Source/core/rendering/RenderBox.cpp
diff --git a/Source/core/rendering/RenderBox.cpp b/Source/core/rendering/RenderBox.cpp
index 64c7940701b19e88212a87e2aa0ec91efa891f6f..9ca4911b82264383a52189d86e9367e03e064bc8 100644
--- a/Source/core/rendering/RenderBox.cpp
+++ b/Source/core/rendering/RenderBox.cpp
@@ -1597,7 +1597,7 @@ void RenderBox::invalidateTreeAfterLayout(const RenderLayerModelObject& paintInv
// If we are set to do a full paint invalidation that means the RenderView will be
// issue paint invalidations. We can then skip issuing of paint invalidations for the child
// renderers as they'll be covered by the RenderView.
- if (view()->doingFullRepaint() && this != view()) {
+ if (view()->doingFullRepaint()) {
LayoutStateMaintainer statePusher(*this, isTableRow() ? LayoutSize() : locationOffset());
RenderObject::invalidateTreeAfterLayout(newPaintInvalidationContainer);
return;
« no previous file with comments | « LayoutTests/fast/repaint/scrolled-iframe-scrollbar-change-expected.txt ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698