| Index: Source/core/animation/AnimationPlayer.cpp
|
| diff --git a/Source/core/animation/AnimationPlayer.cpp b/Source/core/animation/AnimationPlayer.cpp
|
| index 2152892b7c2c7f012ae131232aa9125afd68bc1b..6d5716534fb012a9d4b6339cb04c0a6dc8c82075 100644
|
| --- a/Source/core/animation/AnimationPlayer.cpp
|
| +++ b/Source/core/animation/AnimationPlayer.cpp
|
| @@ -599,8 +599,7 @@
|
|
|
| bool AnimationPlayer::canStartAnimationOnCompositor()
|
| {
|
| - // FIXME: Timeline playback rates should be compositable
|
| - if (m_playbackRate == 0 || (std::isinf(sourceEnd()) && m_playbackRate < 0) || (timeline() && timeline()->playbackRate() != 1))
|
| + if (m_playbackRate == 0 || (std::isinf(sourceEnd()) && m_playbackRate < 0))
|
| return false;
|
|
|
| return m_timeline && m_content && m_content->isAnimation() && playing();
|
|
|