mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 05:39:41 +02:00
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
25 lines
865 B
Text
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;
|
|
};
|