RESOLVED FIXED Bug 178928
[Web Animations] Expose the currentTime property on AnimationTimeline
https://bugs.webkit.org/show_bug.cgi?id=178928
Summary [Web Animations] Expose the currentTime property on AnimationTimeline
Antoine Quint
Reported 2017-10-27 01:49:47 PDT
[Web Animations] Expose the currentTime property on AnimationTimeline
Attachments
Patch (8.08 KB, patch)
2017-10-27 01:52 PDT, Antoine Quint
dino: review+
Antoine Quint
Comment 1 2017-10-27 01:52:10 PDT
Dean Jackson
Comment 2 2017-10-27 03:32:43 PDT
Comment on attachment 325141 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=325141&action=review > Source/WebCore/animation/AnimationTimeline.cpp:57 > + if (m_currentTime) Flip this logic around. Put the nullopt case in the if. > LayoutTests/webanimations/timeline-current-time.html:11 > +internals.setTimelineCurrentTime(document.timeline, 1); Should also test null and negative values.
Antoine Quint
Comment 3 2017-10-27 03:49:03 PDT
(In reply to Dean Jackson from comment #2) > Comment on attachment 325141 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=325141&action=review > > > Source/WebCore/animation/AnimationTimeline.cpp:57 > > + if (m_currentTime) > > Flip this logic around. Put the nullopt case in the if. Will do. > > LayoutTests/webanimations/timeline-current-time.html:11 > > +internals.setTimelineCurrentTime(document.timeline, 1); > > Should also test null and negative values. We don't support null values as it stands, I'm not sure there's much sense in that since a timeline cannot go back to having a null currentTime once it's started having one. I'll add a test for a negative time.
Antoine Quint
Comment 4 2017-10-27 13:30:06 PDT
Radar WebKit Bug Importer
Comment 5 2017-10-31 06:41:08 PDT
Note You need to log in before you can comment on or make changes to this bug.