| Index: sky/engine/core/css/resolver/MatchedPropertiesCache.cpp
|
| diff --git a/sky/engine/core/css/resolver/MatchedPropertiesCache.cpp b/sky/engine/core/css/resolver/MatchedPropertiesCache.cpp
|
| index eaf7b9f09f4f59f375be30805c7e89ef1385d5c6..a3739d3847707cf0f0e33aed867c88f69a2f61c6 100644
|
| --- a/sky/engine/core/css/resolver/MatchedPropertiesCache.cpp
|
| +++ b/sky/engine/core/css/resolver/MatchedPropertiesCache.cpp
|
| @@ -140,9 +140,6 @@ void MatchedPropertiesCache::sweep(Timer<MatchedPropertiesCache>*)
|
|
|
| bool MatchedPropertiesCache::isCacheable(const Element* element, const RenderStyle* style, const RenderStyle* parentStyle)
|
| {
|
| - // FIXME: CSSPropertyWebkitWritingMode modifies state when applying to document element. We can't skip the applying by caching.
|
| - if (element == element->document().documentElement() && element->document().writingModeSetOnDocumentElement())
|
| - return false;
|
| if (style->unique() || (style->styleType() != NOPSEUDO && parentStyle->unique()))
|
| return false;
|
| if (style->zoom() != RenderStyle::initialZoom())
|
|
|