| Index: tools/dom/scripts/htmleventgenerator.py
|
| diff --git a/tools/dom/scripts/htmleventgenerator.py b/tools/dom/scripts/htmleventgenerator.py
|
| index 3ed4393c67538267c444ef2bfeb54c9cd6a9432c..4c23e7dfcf90a4fa499753c38bc830c6b6cb30de 100644
|
| --- a/tools/dom/scripts/htmleventgenerator.py
|
| +++ b/tools/dom/scripts/htmleventgenerator.py
|
| @@ -15,7 +15,7 @@ _logger = logging.getLogger('dartgenerator')
|
| # onEventName methods in the IDL but some events aren't listed so we need
|
| # to manually add them here so that they are easy for users to find.
|
| _html_manual_events = monitored.Dict('htmleventgenerator._html_manual_events', {
|
| - 'Element': ['touchleave', 'touchenter', 'webkitTransitionEnd'],
|
| + 'Element': ['touchleave', 'touchenter', 'transitionend'],
|
| 'Window': ['DOMContentLoaded']
|
| })
|
|
|
| @@ -28,7 +28,6 @@ _on_attribute_to_event_name_mapping = monitored.Dict(
|
| 'webkitanimationiteration': 'webkitAnimationIteration',
|
| 'webkitanimationstart': 'webkitAnimationStart',
|
| 'webkitspeechchange': 'webkitSpeechChange',
|
| - 'webkittransitionend': 'webkitTransitionEnd',
|
| })
|
|
|
| _html_event_types = monitored.Dict('htmleventgenerator._html_event_types', {
|
| @@ -108,7 +107,7 @@ _html_event_types = monitored.Dict('htmleventgenerator._html_event_types', {
|
| '*.webkitAnimationEnd': ('animationEnd', 'AnimationEvent'),
|
| '*.webkitAnimationIteration': ('animationIteration', 'AnimationEvent'),
|
| '*.webkitAnimationStart': ('animationStart', 'AnimationEvent'),
|
| - '*.webkitTransitionEnd': ('transitionEnd', 'TransitionEvent'),
|
| + '*.transitionend': ('transitionEnd', 'TransitionEvent'),
|
| '*.webkitfullscreenchange': ('fullscreenChange', 'Event'),
|
| '*.webkitfullscreenerror': ('fullscreenError', 'Event'),
|
| 'AbstractWorker.error': ('error', 'ErrorEvent'),
|
|
|