mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
17 lines
528 B
Text
17 lines
528 B
Text
![]() |
#import <DOM/Event.idl>
|
||
|
|
||
|
// https://drafts.csswg.org/css-transitions/#transitionevent
|
||
|
[Exposed=Window]
|
||
|
interface TransitionEvent : Event {
|
||
|
constructor(CSSOMString type, optional TransitionEventInit transitionEventInitDict = {});
|
||
|
readonly attribute CSSOMString propertyName;
|
||
|
readonly attribute double elapsedTime;
|
||
|
readonly attribute CSSOMString pseudoElement;
|
||
|
};
|
||
|
|
||
|
dictionary TransitionEventInit : EventInit {
|
||
|
CSSOMString propertyName = "";
|
||
|
double elapsedTime = 0.0;
|
||
|
CSSOMString pseudoElement = "";
|
||
|
};
|