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/webidl/EventHandler.webidl | |
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/webidl/EventHandler.webidl')
-rw-r--r-- | dom/webidl/EventHandler.webidl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dom/webidl/EventHandler.webidl b/dom/webidl/EventHandler.webidl index fce6d9b52c..1edc45ac93 100644 --- a/dom/webidl/EventHandler.webidl +++ b/dom/webidl/EventHandler.webidl @@ -129,14 +129,14 @@ interface GlobalEventHandlers { attribute EventHandler onmozpointerlockerror; // CSS-Animation and CSS-Transition handlers. + attribute EventHandler onanimationcancel; attribute EventHandler onanimationend; attribute EventHandler onanimationiteration; attribute EventHandler onanimationstart; + attribute EventHandler ontransitioncancel; attribute EventHandler ontransitionend; - // We will ship transitionrun and transitionstart events - // on Firefox 53. (For detail, see bug 1324985) -// attribute EventHandler ontransitionrun; -// attribute EventHandler ontransitionstart; + attribute EventHandler ontransitionrun; + attribute EventHandler ontransitionstart; // CSS-Animation and CSS-Transition legacy handlers. // This handler isn't standard. |