mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
17 lines
595 B
Plaintext
17 lines
595 B
Plaintext
#import <DOM/Event.idl>
|
|
#import <CSS/CSSNumericValue.idl>
|
|
|
|
// 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;
|
|
};
|