Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Unified Diff: lib/dom/scripts/systemhtml.py

Issue 9949057: Add touchenter event even though it doesn't have an ontouchenter method in the DOM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698