| Index: sky/engine/core/css/resolver/ScopedStyleResolver.cpp
|
| diff --git a/sky/engine/core/css/resolver/ScopedStyleResolver.cpp b/sky/engine/core/css/resolver/ScopedStyleResolver.cpp
|
| index 69c9f250da554d5e1b7e669cab5c2f034656487a..e88b97e86a431eaae66de02d5ea42d787f542d9b 100644
|
| --- a/sky/engine/core/css/resolver/ScopedStyleResolver.cpp
|
| +++ b/sky/engine/core/css/resolver/ScopedStyleResolver.cpp
|
| @@ -116,18 +116,6 @@ void ScopedStyleResolver::collectStyleSheets(Vector<RefPtr<CSSStyleSheet>>& shee
|
| }
|
| }
|
|
|
| -const StyleRuleKeyframes* ScopedStyleResolver::keyframeStylesForAnimation(String animationName)
|
| -{
|
| - for (auto& sheet : m_authorStyleSheets) {
|
| - // TODO(esprehn): Maybe just store the keyframes in a map?
|
| - for (auto& rule : sheet->contents()->ensureRuleSet().keyframesRules()) {
|
| - if (rule->name() == animationName)
|
| - return rule.get();
|
| - }
|
| - }
|
| - return nullptr;
|
| -}
|
| -
|
| void ScopedStyleResolver::collectMatchingAuthorRules(ElementRuleCollector& collector, CascadeOrder cascadeOrder)
|
| {
|
| for (size_t i = 0; i < m_authorStyleSheets.size(); ++i) {
|
|
|