diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-04-29 18:48:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-29 18:48:43 +0200 |
commit | b036a613d81c806f0666e57c9a0b8e7f73917bde (patch) | |
tree | 8ba5cabbaa5390ce5bffb1af3b31a4e49a8def09 /dom/events/EventNameList.h | |
parent | f8686da310eb80ce0ec6e4494d657ef94645e41b (diff) | |
parent | 95698a6f849823f84b8bdb54d702e1383fb00887 (diff) | |
download | uxp-b036a613d81c806f0666e57c9a0b8e7f73917bde.tar.gz |
Merge pull request #296 from janekptacijarabaci/js_dom_animationcancel_1
DOM - implement animationcancel event
Diffstat (limited to 'dom/events/EventNameList.h')
-rw-r--r-- | dom/events/EventNameList.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dom/events/EventNameList.h b/dom/events/EventNameList.h index 891035c43e..509863e6ce 100644 --- a/dom/events/EventNameList.h +++ b/dom/events/EventNameList.h @@ -1007,6 +1007,10 @@ EVENT(transitionend, eTransitionEnd, EventNameType_All, eTransitionEventClass) +EVENT(transitioncancel, + eTransitionCancel, + EventNameType_All, + eTransitionEventClass) EVENT(animationstart, eAnimationStart, EventNameType_All, @@ -1019,6 +1023,10 @@ EVENT(animationiteration, eAnimationIteration, EventNameType_All, eAnimationEventClass) +EVENT(animationcancel, + eAnimationCancel, + EventNameType_All, + eAnimationEventClass) // Webkit-prefixed versions of Transition & Animation events, for web compat: EVENT(webkitAnimationEnd, |