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