diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-14 09:04:22 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-14 09:04:22 +0100 |
commit | 3a9cafda4dcbf860862347241515e730707f3581 (patch) | |
tree | ccce843e1df9c1d1ba8bf12a03397739888674f0 /dom | |
parent | cf4482199c5b92c5029b79c086cf9f831a87f895 (diff) | |
download | uxp-3a9cafda4dcbf860862347241515e730707f3581.tar.gz |
Revert - Bug 1324985: Disable firing the transitionrun and transitionstart on Aurora 52
Issue #55
Diffstat (limited to 'dom')
-rw-r--r-- | dom/animation/test/mochitest.ini | 2 | ||||
-rw-r--r-- | dom/webidl/EventHandler.webidl | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dom/animation/test/mochitest.ini b/dom/animation/test/mochitest.ini index feb424518d..c694e4d25a 100644 --- a/dom/animation/test/mochitest.ini +++ b/dom/animation/test/mochitest.ini @@ -28,6 +28,7 @@ support-files = css-transitions/file_animation-pausing.html css-transitions/file_animation-ready.html css-transitions/file_animation-starttime.html + css-transitions/file_csstransition-events.html css-transitions/file_csstransition-transitionproperty.html css-transitions/file_document-get-animations.html css-transitions/file_effect-target.html @@ -81,6 +82,7 @@ support-files = [css-transitions/test_animation-pausing.html] [css-transitions/test_animation-ready.html] [css-transitions/test_animation-starttime.html] +[css-transitions/test_csstransition-events.html] [css-transitions/test_csstransition-transitionproperty.html] [css-transitions/test_document-get-animations.html] [css-transitions/test_effect-target.html] diff --git a/dom/webidl/EventHandler.webidl b/dom/webidl/EventHandler.webidl index c76dfe211f..6691ca224c 100644 --- a/dom/webidl/EventHandler.webidl +++ b/dom/webidl/EventHandler.webidl @@ -133,10 +133,8 @@ interface GlobalEventHandlers { 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. |