| 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 4374baac676e35bf43f946192a579d587fe91c3c..ce0e43e46fa174c2b24fb1393c61c07d41a9ee9c 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/MatchedPropertiesCache.cpp
|
| @@ -150,7 +150,7 @@ void MatchedPropertiesCache::sweep(Timer<MatchedPropertiesCache>*)
|
|
|
| bool MatchedPropertiesCache::isCacheable(const ComputedStyle& style, const ComputedStyle& parentStyle)
|
| {
|
| - if (style.unique() || (style.styleType() != NOPSEUDO && parentStyle.unique()))
|
| + if (style.unique() || (style.styleType() != PseudoIdNone && parentStyle.unique()))
|
| return false;
|
| if (style.zoom() != ComputedStyle::initialZoom())
|
| return false;
|
|
|