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

Unified Diff: third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h

Issue 2607003002: Set needs paint property update for changes of SVG isolation and blending. (Closed)
Patch Set: none Created 4 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
Index: third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
diff --git a/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h b/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
index a1578ca5d9c1e4e087a1cbe7028f8aa0fe07560a..0df5618bf795089fa535d7a6b7679a07b14f9d64 100644
--- a/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
+++ b/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
@@ -187,10 +187,12 @@ class FindObjectPropertiesNeedingUpdateScope {
originalBorderBox->propertyTreeState.scroll(),
objectBorderBox->propertyTreeState.scroll());
} else {
- DCHECK_EQ(!!originalBorderBox, !!objectBorderBox);
+ DCHECK_EQ(!!originalBorderBox, !!objectBorderBox)
+ << " Object: " << m_object.debugName();
}
} else {
- DCHECK_EQ(!!m_originalProperties, !!objectProperties);
+ DCHECK_EQ(!!m_originalProperties, !!objectProperties)
+ << " Object: " << m_object.debugName();
}
// Restore original clean bit.
m_object.getMutableForPainting().clearNeedsPaintPropertyUpdateForTesting();

Powered by Google App Engine
This is Rietveld 408576698