| 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 class _HTMLElementWrappingImplementation extends _ElementWrappingImplementation
implements HTMLElement { | 7 class _HTMLElementWrappingImplementation extends _ElementWrappingImplementation
implements HTMLElement { |
| 8 _HTMLElementWrappingImplementation() : super() {} | 8 _HTMLElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__HTMLElementWrappingImplementation() native { | 10 static create__HTMLElementWrappingImplementation() native { |
| 11 return new _HTMLElementWrappingImplementation(); | 11 return new _HTMLElementWrappingImplementation(); |
| 12 } | 12 } |
| 13 | 13 |
| 14 String get accessKey() { return _get_accessKey(this); } |
| 15 static String _get_accessKey(var _this) native; |
| 16 |
| 17 void set accessKey(String value) { _set_accessKey(this, value); } |
| 18 static void _set_accessKey(var _this, String value) native; |
| 19 |
| 14 HTMLCollection get children() { return _get_children(this); } | 20 HTMLCollection get children() { return _get_children(this); } |
| 15 static HTMLCollection _get_children(var _this) native; | 21 static HTMLCollection _get_children(var _this) native; |
| 16 | 22 |
| 17 DOMTokenList get classList() { return _get_classList(this); } | 23 DOMTokenList get classList() { return _get_classList(this); } |
| 18 static DOMTokenList _get_classList(var _this) native; | 24 static DOMTokenList _get_classList(var _this) native; |
| 19 | 25 |
| 20 String get className() { return _get_className(this); } | 26 String get className() { return _get_className(this); } |
| 21 static String _get_className(var _this) native; | 27 static String _get_className(var _this) native; |
| 22 | 28 |
| 23 void set className(String value) { _set_className(this, value); } | 29 void set className(String value) { _set_className(this, value); } |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 static void _insertAdjacentHTML(receiver, where, html) native; | 155 static void _insertAdjacentHTML(receiver, where, html) native; |
| 150 | 156 |
| 151 void insertAdjacentText(String where, String text) { | 157 void insertAdjacentText(String where, String text) { |
| 152 _insertAdjacentText(this, where, text); | 158 _insertAdjacentText(this, where, text); |
| 153 return; | 159 return; |
| 154 } | 160 } |
| 155 static void _insertAdjacentText(receiver, where, text) native; | 161 static void _insertAdjacentText(receiver, where, text) native; |
| 156 | 162 |
| 157 String get typeName() { return "HTMLElement"; } | 163 String get typeName() { return "HTMLElement"; } |
| 158 } | 164 } |
| OLD | NEW |