Index: Source/core/style/StyleDifference.h |
diff --git a/Source/core/style/StyleDifference.h b/Source/core/style/StyleDifference.h |
index 1d3e610ea4a1bfda53cf0220001923984fe2baac..f3aacd306959d0cf95225dbc90d5254777518041 100644 |
--- a/Source/core/style/StyleDifference.h |
+++ b/Source/core/style/StyleDifference.h |
@@ -16,8 +16,9 @@ public: |
OpacityChanged = 1 << 1, |
ZIndexChanged = 1 << 2, |
FilterChanged = 1 << 3, |
+ BackdropFilterChanged = 1 << 4, |
// The object needs to issue paint invalidations if it contains text or properties dependent on color (e.g., border or outline). |
- TextOrColorChanged = 1 << 4, |
+ TextOrColorChanged = 1 << 5, |
}; |
StyleDifference() |
@@ -74,6 +75,9 @@ public: |
bool filterChanged() const { return m_propertySpecificDifferences & FilterChanged; } |
void setFilterChanged() { m_propertySpecificDifferences |= FilterChanged; } |
+ bool backdropFilterChanged() const { return m_propertySpecificDifferences & FilterChanged; } |
+ void setBackdropFilterChanged() { m_propertySpecificDifferences |= BackdropFilterChanged; } |
+ |
bool textOrColorChanged() const { return m_propertySpecificDifferences & TextOrColorChanged; } |
void setTextOrColorChanged() { m_propertySpecificDifferences |= TextOrColorChanged; } |