| 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 interface HTMLElement extends Element { | 7 interface HTMLElement extends Element { |
| 8 | 8 |
| 9 String get accessKey(); | |
| 10 | |
| 11 void set accessKey(String value); | |
| 12 | |
| 13 HTMLCollection get children(); | 9 HTMLCollection get children(); |
| 14 | 10 |
| 15 DOMTokenList get classList(); | 11 DOMTokenList get classList(); |
| 16 | 12 |
| 17 String get className(); | 13 String get className(); |
| 18 | 14 |
| 19 void set className(String value); | 15 void set className(String value); |
| 20 | 16 |
| 21 String get contentEditable(); | 17 String get contentEditable(); |
| 22 | 18 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 String get webkitdropzone(); | 89 String get webkitdropzone(); |
| 94 | 90 |
| 95 void set webkitdropzone(String value); | 91 void set webkitdropzone(String value); |
| 96 | 92 |
| 97 Element insertAdjacentElement(String where, Element element); | 93 Element insertAdjacentElement(String where, Element element); |
| 98 | 94 |
| 99 void insertAdjacentHTML(String where, String html); | 95 void insertAdjacentHTML(String where, String html); |
| 100 | 96 |
| 101 void insertAdjacentText(String where, String text); | 97 void insertAdjacentText(String where, String text); |
| 102 } | 98 } |
| OLD | NEW |