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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('html'); 1 #library('html');
2 2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated dart:html library. 8 // Auto-generated dart:html library.
9 9
10 10
(...skipping 6263 matching lines...) Expand 10 before | Expand all | Expand 10 after
6274 EventListenerList get select() => _get('select'); 6274 EventListenerList get select() => _get('select');
6275 6275
6276 EventListenerList get selectStart() => _get('selectstart'); 6276 EventListenerList get selectStart() => _get('selectstart');
6277 6277
6278 EventListenerList get submit() => _get('submit'); 6278 EventListenerList get submit() => _get('submit');
6279 6279
6280 EventListenerList get touchCancel() => _get('touchcancel'); 6280 EventListenerList get touchCancel() => _get('touchcancel');
6281 6281
6282 EventListenerList get touchEnd() => _get('touchend'); 6282 EventListenerList get touchEnd() => _get('touchend');
6283 6283
6284 EventListenerList get touchEnter() => _get('touchenter');
6285
6284 EventListenerList get touchLeave() => _get('touchleave'); 6286 EventListenerList get touchLeave() => _get('touchleave');
6285 6287
6286 EventListenerList get touchMove() => _get('touchmove'); 6288 EventListenerList get touchMove() => _get('touchmove');
6287 6289
6288 EventListenerList get touchStart() => _get('touchstart'); 6290 EventListenerList get touchStart() => _get('touchstart');
6289 6291
6290 EventListenerList get transitionEnd() => _get('webkitTransitionEnd'); 6292 EventListenerList get transitionEnd() => _get('webkitTransitionEnd');
6291 } 6293 }
6292 6294
6293 class _ElementTimeControlImpl implements ElementTimeControl native "*ElementTime Control" { 6295 class _ElementTimeControlImpl implements ElementTimeControl native "*ElementTime Control" {
(...skipping 15349 matching lines...) Expand 10 before | Expand all | Expand 10 after
21643 EventListenerList get select(); 21645 EventListenerList get select();
21644 21646
21645 EventListenerList get selectStart(); 21647 EventListenerList get selectStart();
21646 21648
21647 EventListenerList get submit(); 21649 EventListenerList get submit();
21648 21650
21649 EventListenerList get touchCancel(); 21651 EventListenerList get touchCancel();
21650 21652
21651 EventListenerList get touchEnd(); 21653 EventListenerList get touchEnd();
21652 21654
21655 EventListenerList get touchEnter();
21656
21653 EventListenerList get touchLeave(); 21657 EventListenerList get touchLeave();
21654 21658
21655 EventListenerList get touchMove(); 21659 EventListenerList get touchMove();
21656 21660
21657 EventListenerList get touchStart(); 21661 EventListenerList get touchStart();
21658 21662
21659 EventListenerList get transitionEnd(); 21663 EventListenerList get transitionEnd();
21660 } 21664 }
21661 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 21665 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
21662 // for details. All rights reserved. Use of this source code is governed by a 21666 // for details. All rights reserved. Use of this source code is governed by a
(...skipping 10828 matching lines...) Expand 10 before | Expand all | Expand 10 after
32491 if (length < 0) throw new IllegalArgumentException('length'); 32495 if (length < 0) throw new IllegalArgumentException('length');
32492 if (start < 0) throw new IndexOutOfRangeException(start); 32496 if (start < 0) throw new IndexOutOfRangeException(start);
32493 int end = start + length; 32497 int end = start + length;
32494 if (end > a.length) throw new IndexOutOfRangeException(end); 32498 if (end > a.length) throw new IndexOutOfRangeException(end);
32495 for (int i = start; i < end; i++) { 32499 for (int i = start; i < end; i++) {
32496 accumulator.add(a[i]); 32500 accumulator.add(a[i]);
32497 } 32501 }
32498 return accumulator; 32502 return accumulator;
32499 } 32503 }
32500 } 32504 }
OLDNEW
« 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