| Index: Source/core/animation/AnimationStack.cpp
 | 
| diff --git a/Source/core/animation/AnimationStack.cpp b/Source/core/animation/AnimationStack.cpp
 | 
| index 178d1d9013beb52df4df83a6bc2de26632b46eca..7d6ecfebfba544f6d05916be92de43f29bdada55 100644
 | 
| --- a/Source/core/animation/AnimationStack.cpp
 | 
| +++ b/Source/core/animation/AnimationStack.cpp
 | 
| @@ -71,15 +71,6 @@ AnimationStack::AnimationStack()
 | 
|  {
 | 
|  }
 | 
|  
 | 
| -bool AnimationStack::affects(CSSPropertyID property) const
 | 
| -{
 | 
| -    for (const auto& effect : m_effects) {
 | 
| -        if (effect->animation() && effect->animation()->affects(property))
 | 
| -            return true;
 | 
| -    }
 | 
| -    return false;
 | 
| -}
 | 
| -
 | 
|  bool AnimationStack::hasActiveAnimationsOnCompositor(CSSPropertyID property) const
 | 
|  {
 | 
|      for (const auto& effect : m_effects) {
 | 
| 
 |