Files
ladybird/Libraries/LibWeb/Animations/AnimationPlaybackEvent.idl
Shannon Booth cc6e048bd6 LibWeb+LibIDL: Remove support for #import directives during parsing
These no longer serve any purpose now that we run the IDLGenerator
on all of these files at once.
2026-04-24 20:08:29 +02:00

14 lines
536 B
Plaintext

// https://drafts.csswg.org/web-animations-2/#animationplaybackevent
[Exposed=Window]
interface AnimationPlaybackEvent : Event {
constructor(DOMString type, optional AnimationPlaybackEventInit eventInitDict = {});
readonly attribute CSSNumberish? currentTime;
readonly attribute CSSNumberish? timelineTime;
};
// https://drafts.csswg.org/web-animations-2/#dictdef-animationplaybackeventinit
dictionary AnimationPlaybackEventInit : EventInit {
CSSNumberish? currentTime = null;
CSSNumberish? timelineTime = null;
};