| Index: lib/dom/scripts/systemhtml.py
|
| diff --git a/lib/dom/scripts/systemhtml.py b/lib/dom/scripts/systemhtml.py
|
| index afcc042914302f68d500747158ac99167e3721db..f22796aee449106b8b02d114935e9ded33870afc 100644
|
| --- a/lib/dom/scripts/systemhtml.py
|
| +++ b/lib/dom/scripts/systemhtml.py
|
| @@ -275,7 +275,7 @@ _html_library_remove = set([
|
| # 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 = {
|
| - 'Element': ['touchleave', 'webkitTransitionEnd'],
|
| + 'Element': ['touchleave', 'touchenter', 'webkitTransitionEnd'],
|
| 'Window': ['DOMContentLoaded']
|
| }
|
|
|
| @@ -379,6 +379,7 @@ _html_event_names = {
|
| 'timeupdate': 'timeUpdate',
|
| 'touchcancel': 'touchCancel',
|
| 'touchend': 'touchEnd',
|
| + 'touchenter': 'touchEnter',
|
| 'touchmove': 'touchMove',
|
| 'touchstart': 'touchStart',
|
| 'unload': 'unload',
|
|
|