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

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

Issue 2736463002: [SPv2] Fix property node invalidation for CSS masks (Closed)
Patch Set: Avoid SVGRoot can of worms Created 3 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
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 673c3661fcf3386034932a4c241aa0cfa5bad553..b9f89bcbe3d8a2ca1a6959d00148d2765833742d 100644
--- a/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
+++ b/third_party/WebKit/Source/core/paint/FindPropertiesNeedingUpdate.h
@@ -142,6 +142,12 @@ class FindObjectPropertiesNeedingUpdateScope {
objectProperties->transform());
DCHECK_OBJECT_PROPERTY_EQ(m_object, m_originalProperties->effect(),
objectProperties->effect());
+ DCHECK_OBJECT_PROPERTY_EQ(m_object, m_originalProperties->filter(),
+ objectProperties->filter());
+ DCHECK_OBJECT_PROPERTY_EQ(m_object, m_originalProperties->mask(),
+ objectProperties->mask());
+ DCHECK_OBJECT_PROPERTY_EQ(m_object, m_originalProperties->maskClip(),
+ objectProperties->maskClip());
DCHECK_OBJECT_PROPERTY_EQ(m_object, m_originalProperties->cssClip(),
objectProperties->cssClip());
DCHECK_OBJECT_PROPERTY_EQ(m_object,
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBox.cpp ('k') | third_party/WebKit/Source/core/paint/ObjectPaintProperties.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698