Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp |
| diff --git a/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp b/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp |
| index 24855a46543b4436be6492518461c1d8307b67a9..fbcccada76e01488b5cfd930a2eb0fa4ce7709d3 100644 |
| --- a/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp |
| +++ b/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp |
| @@ -136,6 +136,8 @@ bool MatchedPropertiesCache::isCacheable(const StyleResolverState& state) { |
| return false; |
| if (style.hasVariableReferenceFromNonInheritedProperty()) |
| return false; |
| + if (style.hasFilter() && style.filter().hasReferenceFilter()) |
|
esprehn
2016/10/25 01:18:42
Hmm, can you explain why you need to turn off matc
fs
2016/10/25 15:00:53
Because mutations to the DOM tree does not reflect
|
| + return false; |
| return true; |
| } |