Changeset 198837 in webkit


Ignore:
Timestamp:
Mar 30, 2016, 9:25:18 AM (10 years ago)
Author:
Simon Fraser
Message:

Make animation events non-cancelable
https://bugs.webkit.org/show_bug.cgi?id=78110

Reviewed by Dan Bates.

Source/WebCore:

Make the animation events non-cancelable.

Test: animations/animation-events-not-cancelable.html

  • dom/AnimationEvent.cpp:

(WebCore::AnimationEvent::AnimationEvent):

LayoutTests:

  • animations/animation-events-not-cancelable-expected.txt: Added.
  • animations/animation-events-not-cancelable.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r198835 r198837  
     12016-03-24  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Make animation events non-cancelable
     4        https://bugs.webkit.org/show_bug.cgi?id=78110
     5
     6        Reviewed by Dan Bates.
     7
     8        * animations/animation-events-not-cancelable-expected.txt: Added.
     9        * animations/animation-events-not-cancelable.html: Added.
     10
    1112016-03-30  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
    212
  • trunk/Source/WebCore/ChangeLog

    r198834 r198837  
     12016-03-24  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Make animation events non-cancelable
     4        https://bugs.webkit.org/show_bug.cgi?id=78110
     5
     6        Reviewed by Dan Bates.
     7
     8        Make the animation events non-cancelable.
     9
     10        Test: animations/animation-events-not-cancelable.html
     11
     12        * dom/AnimationEvent.cpp:
     13        (WebCore::AnimationEvent::AnimationEvent):
     14
    1152016-03-30  Manuel Rego Casasnovas  <rego@igalia.com>
    216
  • trunk/Source/WebCore/dom/AnimationEvent.cpp

    r196400 r198837  
    3939
    4040AnimationEvent::AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime)
    41     : Event(type, true, true)
     41    : Event(type, true, false)
    4242    , m_animationName(animationName)
    4343    , m_elapsedTime(elapsedTime)
Note: See TracChangeset for help on using the changeset viewer.