Changeset 200042 in webkit
- Timestamp:
- Apr 25, 2016, 1:06:04 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r200032 r200042 1 2016-04-25 Simon Fraser <simon.fraser@apple.com> 2 3 Negative animation-delay is treated as 0s 4 https://bugs.webkit.org/show_bug.cgi?id=141008 5 6 Reviewed by Daniel Bates. 7 8 Ref test that has an initially-paused animation on 'left' and with a 9 3d transform. 10 11 * animations/play-state-start-paused-expected.html: Added. 12 * animations/play-state-start-paused.html: Added. 13 1 14 2016-04-25 Brady Eidson <beidson@apple.com> 2 15 -
trunk/Source/WebCore/ChangeLog
r200041 r200042 1 2016-04-25 Simon Fraser <simon.fraser@apple.com> 2 3 Negative animation-delay is treated as 0s 4 https://bugs.webkit.org/show_bug.cgi?id=141008 5 6 Reviewed by Daniel Bates. 7 8 Fix keyframe animations which start in the paused state. 9 10 Explicitly move such animations from the new to the paused state, and 11 set m_pauseTime to 0, rather than leaving it at -1. Fix getElapsedTime() 12 to compute a correct time elapsed time for such animations, which takes 13 negative delay into account correctly. 14 15 Fix assertions which need to account for the new transition of New -> PlayStatePaused. 16 17 Test: animations/play-state-start-paused.html 18 19 * page/animation/AnimationBase.cpp: 20 (WebCore::AnimationBase::updateStateMachine): 21 (WebCore::AnimationBase::getElapsedTime): 22 * page/animation/KeyframeAnimation.cpp: 23 (WebCore::KeyframeAnimation::animate): 24 1 25 2016-04-25 Antti Koivisto <antti@apple.com> 2 26 -
trunk/Source/WebCore/page/animation/AnimationBase.cpp
r194442 r200042 220 220 LOG(Animations, "%p AnimationState %s -> AnimationState::PausedNew", this, nameForState(m_animationState)); 221 221 m_animationState = AnimationState::PausedNew; 222 m_pauseTime = 0; 222 223 } 223 224 … … 389 390 // When the AnimationStateInput::StartTimeSet comes in and we were in AnimationState::PausedRun, we will notice 390 391 // that we have already set the startTime and will ignore it. 391 ASSERT(input == AnimationStateInput::PlayState Running || input == AnimationStateInput::StartTimeSet || input == AnimationStateInput::StyleAvailable || input == AnimationStateInput::StartAnimation);392 ASSERT(input == AnimationStateInput::PlayStatePaused || input == AnimationStateInput::PlayStateRunning || input == AnimationStateInput::StartTimeSet || input == AnimationStateInput::StyleAvailable || input == AnimationStateInput::StartAnimation); 392 393 ASSERT(paused()); 393 394 … … 398 399 LOG(Animations, "%p AnimationState %s -> AnimationState::New", this, nameForState(m_animationState)); 399 400 m_animationState = AnimationState::New; 401 m_pauseTime = -1; 400 402 updateStateMachine(input, param); 401 403 break; … … 407 409 else 408 410 m_startTime = 0; 411 409 412 m_pauseTime = -1; 410 413 … … 447 450 } 448 451 449 ASSERT(m_animationState == AnimationState::Paused WaitStyleAvailable);452 ASSERT(m_animationState == AnimationState::PausedNew || m_animationState == AnimationState::PausedWaitStyleAvailable); 450 453 // We are paused but we got the callback that notifies us that style has been updated. 451 454 // We move to the AnimationState::PausedWaitResponse state … … 742 745 #endif 743 746 744 if (paused()) 745 return m_pauseTime - m_startTime; 747 if (paused()) { 748 double delayOffset = (!m_startTime && m_animation->delay() < 0) ? m_animation->delay() : 0; 749 return m_pauseTime - m_startTime - delayOffset; 750 } 751 746 752 if (m_startTime <= 0) 747 753 return 0; 754 748 755 if (postActive() || fillingForwards()) 749 756 return m_totalDuration; -
trunk/Source/WebCore/page/animation/KeyframeAnimation.cpp
r200041 r200042 132 132 133 133 // If we have not yet started, we will not have a valid start time, so just start the animation if needed. 134 if (isNew() && m_animation->playState() == AnimPlayStatePlaying && !compositeAnimation->isSuspended()) 135 updateStateMachine(AnimationStateInput::StartAnimation, -1); 134 if (isNew()) { 135 if (m_animation->playState() == AnimPlayStatePlaying && !compositeAnimation->isSuspended()) 136 updateStateMachine(AnimationStateInput::StartAnimation, -1); 137 else if (m_animation->playState() == AnimPlayStatePaused) 138 updateStateMachine(AnimationStateInput::PlayStatePaused, -1); 139 } 136 140 137 141 // If we get this far and the animation is done, it means we are cleaning up a just finished animation.
Note:
See TracChangeset
for help on using the changeset viewer.