| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 /** | 5 /** |
| 6 * Custom Elements let authors define their own elements. Authors associate code | 6 * Custom Elements let authors define their own elements. Authors associate code |
| 7 * with custom tag names, and then use those custom tag names as they would any | 7 * with custom tag names, and then use those custom tag names as they would any |
| 8 * standard tag. See <www.polymer-project.org/platform/custom-elements.html> | 8 * standard tag. See <www.polymer-project.org/platform/custom-elements.html> |
| 9 * for more information. | 9 * for more information. |
| 10 */ | 10 */ |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 Stream<MouseEvent> get onDrop => host.onDrop; | 584 Stream<MouseEvent> get onDrop => host.onDrop; |
| 585 Stream<Event> get onError => host.onError; | 585 Stream<Event> get onError => host.onError; |
| 586 Stream<Event> get onFocus => host.onFocus; | 586 Stream<Event> get onFocus => host.onFocus; |
| 587 Stream<Event> get onInput => host.onInput; | 587 Stream<Event> get onInput => host.onInput; |
| 588 Stream<Event> get onInvalid => host.onInvalid; | 588 Stream<Event> get onInvalid => host.onInvalid; |
| 589 Stream<KeyboardEvent> get onKeyDown => host.onKeyDown; | 589 Stream<KeyboardEvent> get onKeyDown => host.onKeyDown; |
| 590 Stream<KeyboardEvent> get onKeyPress => host.onKeyPress; | 590 Stream<KeyboardEvent> get onKeyPress => host.onKeyPress; |
| 591 Stream<KeyboardEvent> get onKeyUp => host.onKeyUp; | 591 Stream<KeyboardEvent> get onKeyUp => host.onKeyUp; |
| 592 Stream<Event> get onLoad => host.onLoad; | 592 Stream<Event> get onLoad => host.onLoad; |
| 593 Stream<MouseEvent> get onMouseDown => host.onMouseDown; | 593 Stream<MouseEvent> get onMouseDown => host.onMouseDown; |
| 594 Stream<MouseEvent> get onMouseEnter => host.onMouseEnter; |
| 595 Stream<MouseEvent> get onMouseLeave => host.onMouseLeave; |
| 594 Stream<MouseEvent> get onMouseMove => host.onMouseMove; | 596 Stream<MouseEvent> get onMouseMove => host.onMouseMove; |
| 595 Stream<Event> get onFullscreenChange => host.onFullscreenChange; | 597 Stream<Event> get onFullscreenChange => host.onFullscreenChange; |
| 596 Stream<Event> get onFullscreenError => host.onFullscreenError; | 598 Stream<Event> get onFullscreenError => host.onFullscreenError; |
| 597 Stream<Event> get onPaste => host.onPaste; | 599 Stream<Event> get onPaste => host.onPaste; |
| 598 Stream<Event> get onReset => host.onReset; | 600 Stream<Event> get onReset => host.onReset; |
| 599 Stream<Event> get onScroll => host.onScroll; | 601 Stream<Event> get onScroll => host.onScroll; |
| 600 Stream<Event> get onSearch => host.onSearch; | 602 Stream<Event> get onSearch => host.onSearch; |
| 601 Stream<Event> get onSelect => host.onSelect; | 603 Stream<Event> get onSelect => host.onSelect; |
| 602 Stream<Event> get onSelectStart => host.onSelectStart; | 604 Stream<Event> get onSelectStart => host.onSelectStart; |
| 603 Stream<Event> get onSubmit => host.onSubmit; | 605 Stream<Event> get onSubmit => host.onSubmit; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 for (var removed in record.removedNodes) { | 656 for (var removed in record.removedNodes) { |
| 655 if (identical(node, removed)) { | 657 if (identical(node, removed)) { |
| 656 observer.disconnect(); | 658 observer.disconnect(); |
| 657 element.removed(); | 659 element.removed(); |
| 658 return; | 660 return; |
| 659 } | 661 } |
| 660 } | 662 } |
| 661 } | 663 } |
| 662 }).observe(element.parentNode, childList: true); | 664 }).observe(element.parentNode, childList: true); |
| 663 } | 665 } |
| OLD | NEW |