OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |