Bug 1264125 part 2 - Add ontransitioncancel EventHandler to WebIDL. r?baku draft
authorMantaroh Yoshinaga <mantaroh@gmail.com>
Tue, 20 Dec 2016 16:03:29 +0900
changeset 451396 3f8be5f793367da40243072ad62dc3b7e99873fa
parent 451395 fcaf55337c0cd56c80ab3ab56ca6bc57469f6309
child 451397 7e3299a74fdfcca09d61e18edc4a5d60fcabf2d7
push id39153
push usermantaroh@gmail.com
push dateTue, 20 Dec 2016 07:36:10 +0000
reviewersbaku
bugs1264125
milestone53.0a1
Bug 1264125 part 2 - Add ontransitioncancel EventHandler to WebIDL. r?baku We moved 'transitioncancel' event to the CSS-Transition Level 1. The definition of 'transitioncancel' is as follow: https://drafts.csswg.org/css-transitions-1/#transitioncancle MozReview-Commit-ID: 62s9R7MpXmk
dom/webidl/EventHandler.webidl
--- a/dom/webidl/EventHandler.webidl
+++ b/dom/webidl/EventHandler.webidl
@@ -126,16 +126,17 @@ interface GlobalEventHandlers {
            attribute EventHandler onmozpointerlockchange;
            [Pref="pointer-lock-api.prefixed.enabled"]
            attribute EventHandler onmozpointerlockerror;
 
            // CSS-Animation and CSS-Transition handlers.
            attribute EventHandler onanimationend;
            attribute EventHandler onanimationiteration;
            attribute EventHandler onanimationstart;
+           attribute EventHandler ontransitioncancel;
            attribute EventHandler ontransitionend;
            attribute EventHandler ontransitionrun;
            attribute EventHandler ontransitionstart;
 
            // CSS-Animation and CSS-Transition legacy handlers.
            // This handler isn't standard.
            attribute EventHandler onwebkitanimationend;
            attribute EventHandler onwebkitanimationiteration;