css-transitions.idl (870B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: CSS Transitions Module Level 1 (https://drafts.csswg.org/css-transitions-1/) 5 6 [Exposed=Window] 7 interface 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 14 dictionary TransitionEventInit : EventInit { 15 CSSOMString propertyName = ""; 16 double elapsedTime = 0.0; 17 CSSOMString pseudoElement = ""; 18 }; 19 20 partial interface mixin GlobalEventHandlers { 21 attribute EventHandler ontransitionrun; 22 attribute EventHandler ontransitionstart; 23 attribute EventHandler ontransitionend; 24 attribute EventHandler ontransitioncancel; 25 };