Bug 1302648 part 2 - Add onanimationcancel EventHandler to WebIDL. r?baku draft
authorMantaroh Yoshinaga <mantaroh@gmail.com>
Fri, 10 Feb 2017 12:32:44 +0900
changeset 481634 9160fc8d6f92b41fe63a73fa4ccb31003aeba90c
parent 481633 bd8a361c29332277720b1300e699a40a3793e2ad
child 481635 bb2941d84a7c1b5db170030cd9ee4f57160df40c
push id44889
push usermantaroh@gmail.com
push dateFri, 10 Feb 2017 08:41:14 +0000
reviewersbaku
bugs1302648
milestone54.0a1
Bug 1302648 part 2 - Add onanimationcancel EventHandler to WebIDL. r?baku The 'animationcancel' spec is as follow: https://drafts.csswg.org/css-animations-1/#eventdef-animationevent-animationcancel MozReview-Commit-ID: 27Ju6DcakzS
dom/webidl/EventHandler.webidl
--- a/dom/webidl/EventHandler.webidl
+++ b/dom/webidl/EventHandler.webidl
@@ -117,16 +117,17 @@ interface GlobalEventHandlers {
            attribute EventHandler onlostpointercapture;
 
            // Mozilla-specific handlers. Unprefixed handlers live in
            // Document rather than here.
            attribute EventHandler onmozfullscreenchange;
            attribute EventHandler onmozfullscreenerror;
 
            // CSS-Animation and CSS-Transition handlers.
+           attribute EventHandler onanimationcancel;
            attribute EventHandler onanimationend;
            attribute EventHandler onanimationiteration;
            attribute EventHandler onanimationstart;
            attribute EventHandler ontransitioncancel;
            attribute EventHandler ontransitionend;
            attribute EventHandler ontransitionrun;
            attribute EventHandler ontransitionstart;