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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBox.cpp

Issue 1739893006: Skip PaintLayer empty paint phases if it previously painted nothing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 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 | « no previous file | third_party/WebKit/Source/core/paint/PaintLayer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
index c48220c9b982670f937e3d025d61a06373815254..35f75a72a61146a7cab3d8efc29ee8ea6ef17103 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
@@ -1482,15 +1482,15 @@ bool LayoutBox::intersectsVisibleViewport()
PaintInvalidationReason LayoutBox::invalidatePaintIfNeeded(PaintInvalidationState& paintInvalidationState, const LayoutBoxModelObject& paintInvalidationContainer)
{
- if (isFloating())
- paintInvalidationState.enclosingSelfPaintingLayer(*this).setNeedsPaintPhaseFloat();
-
- if (hasBoxDecorationBackground()
- // We also paint overflow controls in background phase.
- || (hasOverflowClip() && scrollableArea()->hasOverflowControls())) {
- PaintLayer& layer = paintInvalidationState.enclosingSelfPaintingLayer(*this);
- if (layer.layoutObject() != this)
- layer.setNeedsPaintPhaseDescendantBlockBackgrounds();
+ PaintLayer& enclosingSelfPaintingLayer = paintInvalidationState.enclosingSelfPaintingLayer(*this);
+ if (enclosingSelfPaintingLayer.layoutObject() != this) {
+ if (isFloating())
+ enclosingSelfPaintingLayer.setNeedsPaintPhaseFloat();
Xianzhu 2016/03/08 22:08:42 This change is because a self-painting floating la
+
+ if (hasBoxDecorationBackground()
+ // We also paint overflow controls in background phase.
+ || (hasOverflowClip() && scrollableArea()->hasOverflowControls()))
+ enclosingSelfPaintingLayer.setNeedsPaintPhaseDescendantBlockBackgrounds();
chrishtr 2016/03/09 03:40:47 A self-painting layer also doesn't need PaintPhase
Xianzhu 2016/03/09 21:39:52 Right. The layer paints its own background in Pain
}
PaintInvalidationReason fullInvalidationReason = fullPaintInvalidationReason();
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/paint/PaintLayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698