mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
14 lines
536 B
Plaintext
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;
|
|
};
|