Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp |
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp |
index 382a9d020e2dce7c7ba2eee758962bee952611da..a04292b48b334e0a828f138c778faa04f6f3ea09 100644 |
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp |
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp |
@@ -786,6 +786,9 @@ void ComputedStyle::updatePropertySpecificDifferences(const ComputedStyle& other |
if (rareNonInheritedData->m_backdropFilter != other.rareNonInheritedData->m_backdropFilter) |
diff.setBackdropFilterChanged(); |
+ |
+ if (RuntimeEnabledFeatures::cssBoxReflectFilterEnabled() && rareNonInheritedData->m_boxReflect != other.rareNonInheritedData->m_boxReflect) |
+ diff.setFilterChanged(); |
} |
if (!diff.needsPaintInvalidation()) { |