| 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 HTMLCollection get children(); | 9 HTMLCollection get children(); |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 String get innerHTML(); | 37 String get innerHTML(); |
| 38 | 38 |
| 39 void set innerHTML(String value); | 39 void set innerHTML(String value); |
| 40 | 40 |
| 41 String get innerText(); | 41 String get innerText(); |
| 42 | 42 |
| 43 void set innerText(String value); | 43 void set innerText(String value); |
| 44 | 44 |
| 45 bool get isContentEditable(); | 45 bool get isContentEditable(); |
| 46 | 46 |
| 47 String get itemId(); |
| 48 |
| 49 void set itemId(String value); |
| 50 |
| 51 DOMSettableTokenList get itemProp(); |
| 52 |
| 53 DOMSettableTokenList get itemRef(); |
| 54 |
| 55 bool get itemScope(); |
| 56 |
| 57 void set itemScope(bool value); |
| 58 |
| 59 DOMSettableTokenList get itemType(); |
| 60 |
| 61 Object get itemValue(); |
| 62 |
| 63 void set itemValue(Object value); |
| 64 |
| 47 String get lang(); | 65 String get lang(); |
| 48 | 66 |
| 49 void set lang(String value); | 67 void set lang(String value); |
| 50 | 68 |
| 51 String get outerHTML(); | 69 String get outerHTML(); |
| 52 | 70 |
| 53 void set outerHTML(String value); | 71 void set outerHTML(String value); |
| 54 | 72 |
| 55 String get outerText(); | 73 String get outerText(); |
| 56 | 74 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 71 String get webkitdropzone(); | 89 String get webkitdropzone(); |
| 72 | 90 |
| 73 void set webkitdropzone(String value); | 91 void set webkitdropzone(String value); |
| 74 | 92 |
| 75 Element insertAdjacentElement(String where, Element element); | 93 Element insertAdjacentElement(String where, Element element); |
| 76 | 94 |
| 77 void insertAdjacentHTML(String where, String html); | 95 void insertAdjacentHTML(String where, String html); |
| 78 | 96 |
| 79 void insertAdjacentText(String where, String text); | 97 void insertAdjacentText(String where, String text); |
| 80 } | 98 } |
| OLD | NEW |