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

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

Issue 1536663004: Need to repaint its ::first-line background when a block moves. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « third_party/WebKit/Source/core/layout/LayoutBlockFlow.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp b/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
index 02cf84f9dbd2a1216e737550be00b1e2d3201017..43555eb07f418623c438aaea01165f1d68953aa1 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlowLine.cpp
@@ -2079,4 +2079,17 @@ void LayoutBlockFlow::invalidateDisplayItemClientsOfFirstLine()
firstRootBox->invalidateDisplayItemClientsRecursively();
}
+PaintInvalidationReason LayoutBlockFlow::invalidatePaintIfNeeded(PaintInvalidationState& paintInvalidationState, const LayoutBoxModelObject& paintInvalidationContainer)
Xianzhu 2015/12/18 17:24:54 This will miss the LayoutButton case, but I think
+{
+ PaintInvalidationReason reason = LayoutBlock::invalidatePaintIfNeeded(paintInvalidationState, paintInvalidationContainer);
+ if (reason == PaintInvalidationNone)
+ return reason;
+ RootInlineBox* line = firstRootBox();
+ if (!line || !line->isFirstLineStyle())
+ return reason;
+ // It's the RootInlineBox that paints the ::first-line background.
+ invalidateDisplayItemClient(*line);
Xianzhu 2015/12/18 07:01:20 Will this always invalidate the first line, even i
mstensho (USE GERRIT) 2015/12/18 10:33:04 Yeah, looks like it. That wasn't my intention.
mstensho (USE GERRIT) 2015/12/18 13:11:11 Fixed it. Not sure if it's worth it, though. Could
Xianzhu 2015/12/18 17:24:54 Hmm enclosingFirstLineStyleBlock() seems not cheap
mstensho (USE GERRIT) 2015/12/21 10:54:10 Done. Added a comment too.
+ return reason;
+}
+
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBlockFlow.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698