Changeset 198837 in webkit
- Timestamp:
- Mar 30, 2016, 9:25:18 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/animations/animation-events-not-cancelable-expected.txt (added)
-
LayoutTests/animations/animation-events-not-cancelable.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/dom/AnimationEvent.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r198835 r198837 1 2016-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 1 11 2016-03-30 Gyuyoung Kim <gyuyoung.kim@webkit.org> 2 12 -
trunk/Source/WebCore/ChangeLog
r198834 r198837 1 2016-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 1 15 2016-03-30 Manuel Rego Casasnovas <rego@igalia.com> 2 16 -
trunk/Source/WebCore/dom/AnimationEvent.cpp
r196400 r198837 39 39 40 40 AnimationEvent::AnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime) 41 : Event(type, true, true)41 : Event(type, true, false) 42 42 , m_animationName(animationName) 43 43 , m_elapsedTime(elapsedTime)
Note:
See TracChangeset
for help on using the changeset viewer.