| Index: Source/core/animation/Animation.cpp
|
| diff --git a/Source/core/animation/Animation.cpp b/Source/core/animation/Animation.cpp
|
| index bc18d7e0e9c9387edb6bd323c66be8efd146cb49..102bfae9586c3ab8d2f57bdc03252348924a6c0b 100644
|
| --- a/Source/core/animation/Animation.cpp
|
| +++ b/Source/core/animation/Animation.cpp
|
| @@ -88,7 +88,7 @@ bool Animation::applyEffects(bool previouslyInEffect)
|
| // FIXME: Handle iteration values which overflow int.
|
| m_compositableValues = m_effect->sample(static_cast<int>(iteration), timeFraction());
|
| if (player()) {
|
| - m_target->setNeedsStyleRecalc(LocalStyleChange, StyleChangeFromRenderer);
|
| + m_target->setNeedsAnimationStyleRecalc();
|
| return true;
|
| }
|
| return false;
|
| @@ -102,7 +102,7 @@ void Animation::clearEffects()
|
| cancelAnimationOnCompositor();
|
| m_activeInAnimationStack = false;
|
| m_compositableValues.clear();
|
| - m_target->setNeedsStyleRecalc(LocalStyleChange, StyleChangeFromRenderer);
|
| + m_target->setNeedsAnimationStyleRecalc();
|
| }
|
|
|
| bool Animation::updateChildrenAndEffects() const
|
|
|