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

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

Issue 2521613003: Add flag for tracking descendant paint property updates (Closed)
Patch Set: Address Xianzhu's comments Created 4 years, 1 month 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: third_party/WebKit/Source/core/layout/VisualRectMappingTest.cpp
diff --git a/third_party/WebKit/Source/core/layout/VisualRectMappingTest.cpp b/third_party/WebKit/Source/core/layout/VisualRectMappingTest.cpp
index 9e8e20aad35b0bbb0f28e5214fe347c2ddb71293..c3d7eef11ca1e6626ed3c0c89ee9a7d33aaaf96d 100644
--- a/third_party/WebKit/Source/core/layout/VisualRectMappingTest.cpp
+++ b/third_party/WebKit/Source/core/layout/VisualRectMappingTest.cpp
@@ -26,7 +26,7 @@ class VisualRectMappingTest : public RenderingTest {
const LayoutObject& paintInvalidationContainer) {
Vector<const LayoutObject*> ancestors;
for (const LayoutObject* ancestor = &object; ancestor != layoutView;
- ancestor = ancestor->paintInvalidationParent())
+ ancestor = ancestor->slowPaintInvalidationParentForTesting())
ancestors.append(ancestor);
Vector<Optional<PaintInvalidationState>> paintInvalidationStates(

Powered by Google App Engine
This is Rietveld 408576698