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