gecko-dev/testing/web-platform/tests/interfaces/css-transitions.idl
autofoolip 968091081b Bug 1506080 [wpt PR 13997] - Update interfaces/css-transitions.idl, a=testonly
Automatic update from web-platform-testsUpdate interfaces/css-transitions.idl (#13997)

Source: https://github.com/tidoust/reffy-reports/blob/83bbd56/whatwg/idl/css-transitions.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/452744285
--

wpt-commits: d7a9bb5578c95d8e92a7c67c7c91d603cabbb64e
wpt-pr: 13997
2018-11-14 13:38:21 +00:00

25 lines
865 B
Text

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// Source: CSS Transitions (https://drafts.csswg.org/css-transitions/)
[Exposed=Window,
Constructor(CSSOMString type, optional TransitionEventInit transitionEventInitDict)]
interface TransitionEvent : Event {
readonly attribute CSSOMString propertyName;
readonly attribute double elapsedTime;
readonly attribute CSSOMString pseudoElement;
};
dictionary TransitionEventInit : EventInit {
CSSOMString propertyName = "";
double elapsedTime = 0.0;
CSSOMString pseudoElement = "";
};
partial interface mixin GlobalEventHandlers {
attribute EventHandler ontransitionrun;
attribute EventHandler ontransitionstart;
attribute EventHandler ontransitionend;
attribute EventHandler ontransitioncancel;
};