Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2009)

Unified Diff: core/events/TransitionEvent.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/events/TouchEvent.idl ('k') | core/events/TransitionEventInit.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/events/TransitionEvent.idl
diff --git a/core/events/TransitionEvent.idl b/core/events/TransitionEvent.idl
index 94ee353b28560d233fbf9cc0543582507688ec1a..2cf948001c2560a37dac6803dd567c236ccccce1 100644
--- a/core/events/TransitionEvent.idl
+++ b/core/events/TransitionEvent.idl
@@ -24,11 +24,13 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// http://dev.w3.org/csswg/css-transitions/#transition-events
+
[
- EventConstructor,
+ Constructor(DOMString type, optional TransitionEventInit eventInitDict),
] interface TransitionEvent : Event {
- [InitializedByEventConstructor] readonly attribute DOMString propertyName;
- [InitializedByEventConstructor] readonly attribute double elapsedTime;
- [InitializedByEventConstructor] readonly attribute DOMString pseudoElement;
+ readonly attribute DOMString propertyName;
+ // TODO(philipj): elapsedTime should be float.
+ readonly attribute double elapsedTime;
+ readonly attribute DOMString pseudoElement;
};
-
« no previous file with comments | « core/events/TouchEvent.idl ('k') | core/events/TransitionEventInit.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698