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 03070017eaec6a5eeeff734b10427b0bbe4dae73..7af9c37ecc0f17fb5152f9d4e7d2a7281aed62f5 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()) { |