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 part of html; | 7 part of html; |
8 | 8 |
9 /** | 9 /** |
10 * All your attribute manipulation needs in one place. | 10 * All your attribute manipulation needs in one place. |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 bool toggle(String token); | 42 bool toggle(String token); |
43 | 43 |
44 /** | 44 /** |
45 * Returns [:true:] classes cannot be added or removed from this | 45 * Returns [:true:] classes cannot be added or removed from this |
46 * [:CSSClassSet:]. | 46 * [:CSSClassSet:]. |
47 */ | 47 */ |
48 bool get frozen; | 48 bool get frozen; |
49 } | 49 } |
50 | 50 |
51 $!COMMENT | 51 $!COMMENT |
52 abstract class Element implements Node, NodeSelector { | 52 abstract class _IElement implements _INode, NodeSelector { |
53 factory Element.html(String html) => | 53 factory Element.html(String html) => |
54 _$(ID)FactoryProvider.createElement_html(html); | 54 _$(ID)FactoryProvider.createElement_html(html); |
55 factory Element.tag(String tag) => | 55 factory Element.tag(String tag) => |
56 _$(ID)FactoryProvider.createElement_tag(tag); | 56 _$(ID)FactoryProvider.createElement_tag(tag); |
57 | 57 |
58 AttributeMap get attributes; | 58 AttributeMap get attributes; |
59 void set attributes(Map<String, String> value); | 59 void set attributes(Map<String, String> value); |
60 | 60 |
61 /** | 61 /** |
62 * @domName childElementCount, firstElementChild, lastElementChild, | 62 * @domName childElementCount, firstElementChild, lastElementChild, |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 * `extend Element` from your class, in which case this field will be | 109 * `extend Element` from your class, in which case this field will be |
110 * deprecated and will simply return this [Element] object. | 110 * deprecated and will simply return this [Element] object. |
111 * | 111 * |
112 * [wc]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html | 112 * [wc]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html |
113 * [x-tags]: http://x-tags.org/ | 113 * [x-tags]: http://x-tags.org/ |
114 */ | 114 */ |
115 var xtag; | 115 var xtag; |
116 | 116 |
117 $!MEMBERS | 117 $!MEMBERS |
118 } | 118 } |
OLD | NEW |