Changeset 200042 in webkit


Ignore:
Timestamp:
Apr 25, 2016, 1:06:04 PM (9 years ago)
Author:
Simon Fraser
Message:

Negative animation-delay is treated as 0s
https://bugs.webkit.org/show_bug.cgi?id=141008

Reviewed by Daniel Bates.

Source/WebCore:

Fix keyframe animations which start in the paused state.

Explicitly move such animations from the new to the paused state, and
set m_pauseTime to 0, rather than leaving it at -1. Fix getElapsedTime()
to compute a correct time elapsed time for such animations, which takes
negative delay into account correctly.

Fix assertions which need to account for the new transition of New -> PlayStatePaused.

Test: animations/play-state-start-paused.html

  • page/animation/AnimationBase.cpp:

(WebCore::AnimationBase::updateStateMachine):
(WebCore::AnimationBase::getElapsedTime):

  • page/animation/KeyframeAnimation.cpp:

(WebCore::KeyframeAnimation::animate):

LayoutTests:

Ref test that has an initially-paused animation on 'left' and with a
3d transform.

  • animations/play-state-start-paused-expected.html: Added.
  • animations/play-state-start-paused.html: Added.
Location:
trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r200032 r200042  
     12016-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
    1142016-04-25  Brady Eidson  <beidson@apple.com>
    215
  • trunk/Source/WebCore/ChangeLog

    r200041 r200042  
     12016-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
    1252016-04-25  Antti Koivisto  <antti@apple.com>
    226
  • trunk/Source/WebCore/page/animation/AnimationBase.cpp

    r194442 r200042  
    220220                LOG(Animations, "%p AnimationState %s -> AnimationState::PausedNew", this, nameForState(m_animationState));
    221221                m_animationState = AnimationState::PausedNew;
     222                m_pauseTime = 0;
    222223            }
    223224
     
    389390            // When the AnimationStateInput::StartTimeSet comes in and we were in AnimationState::PausedRun, we will notice
    390391            // that we have already set the startTime and will ignore it.
    391             ASSERT(input == AnimationStateInput::PlayStateRunning || 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);
    392393            ASSERT(paused());
    393394
     
    398399                    LOG(Animations, "%p AnimationState %s -> AnimationState::New", this, nameForState(m_animationState));
    399400                    m_animationState = AnimationState::New;
     401                    m_pauseTime = -1;
    400402                    updateStateMachine(input, param);
    401403                    break;
     
    407409                else
    408410                    m_startTime = 0;
     411
    409412                m_pauseTime = -1;
    410413
     
    447450            }
    448451
    449             ASSERT(m_animationState == AnimationState::PausedWaitStyleAvailable);
     452            ASSERT(m_animationState == AnimationState::PausedNew || m_animationState == AnimationState::PausedWaitStyleAvailable);
    450453            // We are paused but we got the callback that notifies us that style has been updated.
    451454            // We move to the AnimationState::PausedWaitResponse state
     
    742745#endif
    743746
    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
    746752    if (m_startTime <= 0)
    747753        return 0;
     754
    748755    if (postActive() || fillingForwards())
    749756        return m_totalDuration;
  • trunk/Source/WebCore/page/animation/KeyframeAnimation.cpp

    r200041 r200042  
    132132   
    133133    // 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    }
    136140
    137141    // 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.