blob: 174bf209f131ec9cb706e3d2d2d2ea4c1b70bcc7 [file] [log] [blame]
Victor Porof6e096922022-06-10 13:01:05 +00001// GENERATED CONTENT - DO NOT EDIT
2// Content was automatically extracted by Reffy into webref
3// (https://github.com/w3c/webref)
4// Source: CSS Transitions (https://drafts.csswg.org/css-transitions/)
5
6[Exposed=Window]
7interface TransitionEvent : Event {
8 constructor(CSSOMString type, optional TransitionEventInit transitionEventInitDict = {});
9 readonly attribute CSSOMString propertyName;
10 readonly attribute double elapsedTime;
11 readonly attribute CSSOMString pseudoElement;
12};
13
14dictionary TransitionEventInit : EventInit {
15 CSSOMString propertyName = "";
16 double elapsedTime = 0.0;
17 CSSOMString pseudoElement = "";
18};
19
20partial interface mixin GlobalEventHandlers {
21 attribute EventHandler ontransitionrun;
22 attribute EventHandler ontransitionstart;
23 attribute EventHandler ontransitionend;
24 attribute EventHandler ontransitioncancel;
25};