Files
ladybird/Libraries/LibWeb/Animations/AnimationTimeline.idl
Callum Law 3ab187fd3c LibWeb: Expose AnimationTimeline::currentTime as CSSNumberish
This also allows us to remove the now redundant
`CSSNumberishTime::as_milliseconds()` method
2025-12-12 10:49:18 +00:00

10 lines
410 B
Plaintext

#import <CSS/CSSNumericValue.idl>
// https://drafts.csswg.org/web-animations-2/#the-animationtimeline-interface
[Exposed=Window]
interface AnimationTimeline {
[ImplementedAs=current_time_for_bindings] readonly attribute CSSNumberish? currentTime;
[ImplementedAs=duration_for_bindings] readonly attribute CSSNumberish? duration;
[FIXME] Animation play (optional AnimationEffect? effect = null);
};