mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-07 12:20:12 +01:00
17 lines
528 B
Plaintext
17 lines
528 B
Plaintext
#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 = "";
|
|
};
|