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

Unified Diff: lib/html/frog/html_frog.dart

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 | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/frog/html_frog.dart
diff --git a/lib/html/frog/html_frog.dart b/lib/html/frog/html_frog.dart
index 9420f5c5fb2f2d2005ea1d24023490e785f3896c..c15574faa2626350d7c853b2c22af2561b54b9df 100644
--- a/lib/html/frog/html_frog.dart
+++ b/lib/html/frog/html_frog.dart
@@ -6281,6 +6281,8 @@ class _ElementEventsImpl extends _EventsImpl implements ElementEvents {
EventListenerList get touchEnd() => _get('touchend');
+ EventListenerList get touchEnter() => _get('touchenter');
+
EventListenerList get touchLeave() => _get('touchleave');
EventListenerList get touchMove() => _get('touchmove');
@@ -21650,6 +21652,8 @@ interface ElementEvents extends Events {
EventListenerList get touchEnd();
+ EventListenerList get touchEnter();
+
EventListenerList get touchLeave();
EventListenerList get touchMove();
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698