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

Side by Side Diff: client/html/generated/html/interface/Element.dart

Issue 9623017: Refactor the event-generation code to locate it in systemhtml.py. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 9 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 /** 7 /**
8 * Provides a Map abstraction on top of data-* attributes, similar to the 8 * Provides a Map abstraction on top of data-* attributes, similar to the
9 * dataSet in the old DOM. 9 * dataSet in the old DOM.
10 */ 10 */
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 Future<CSSStyleDeclaration> get computedStyle(); 290 Future<CSSStyleDeclaration> get computedStyle();
291 291
292 /** @domName Window.getComputedStyle */ 292 /** @domName Window.getComputedStyle */
293 Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement); 293 Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement);
294 294
295 Element clone(bool deep); 295 Element clone(bool deep);
296 296
297 Element get parent(); 297 Element get parent();
298 298
299 299
300 ElementEvents get on();
301
300 static final int ALLOW_KEYBOARD_INPUT = 1; 302 static final int ALLOW_KEYBOARD_INPUT = 1;
301 303
302 final int _childElementCount; 304 final int _childElementCount;
303 305
304 final HTMLCollection _children; 306 final HTMLCollection _children;
305 307
306 final DOMTokenList classList; 308 final DOMTokenList classList;
307 309
308 String _className; 310 String _className;
309 311
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 final String tagName; 370 final String tagName;
369 371
370 String title; 372 String title;
371 373
372 bool translate; 374 bool translate;
373 375
374 final String webkitRegionOverflow; 376 final String webkitRegionOverflow;
375 377
376 String webkitdropzone; 378 String webkitdropzone;
377 379
378 ElementEvents get on();
379
380 void blur(); 380 void blur();
381 381
382 void click(); 382 void click();
383 383
384 void focus(); 384 void focus();
385 385
386 String _getAttribute(String name); 386 String _getAttribute(String name);
387 387
388 ClientRect _getBoundingClientRect(); 388 ClientRect _getBoundingClientRect();
389 389
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 EventListenerList get touchEnd(); 506 EventListenerList get touchEnd();
507 507
508 EventListenerList get touchLeave(); 508 EventListenerList get touchLeave();
509 509
510 EventListenerList get touchMove(); 510 EventListenerList get touchMove();
511 511
512 EventListenerList get touchStart(); 512 EventListenerList get touchStart();
513 513
514 EventListenerList get transitionEnd(); 514 EventListenerList get transitionEnd();
515 } 515 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698