| OLD | NEW |
| 1 | 1 |
| 2 class HTMLElementJs extends ElementJs implements HTMLElement native "*HTMLElemen
t" { | 2 class _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem
ent" { |
| 3 | 3 |
| 4 String get accessKey() native "return this.accessKey;"; | 4 String get accessKey() native "return this.accessKey;"; |
| 5 | 5 |
| 6 void set accessKey(String value) native "this.accessKey = value;"; | 6 void set accessKey(String value) native "this.accessKey = value;"; |
| 7 | 7 |
| 8 HTMLCollectionJs get children() native "return this.children;"; | 8 _HTMLCollectionJs get children() native "return this.children;"; |
| 9 | 9 |
| 10 DOMTokenListJs get classList() native "return this.classList;"; | 10 _DOMTokenListJs get classList() native "return this.classList;"; |
| 11 | 11 |
| 12 String get className() native "return this.className;"; | 12 String get className() native "return this.className;"; |
| 13 | 13 |
| 14 void set className(String value) native "this.className = value;"; | 14 void set className(String value) native "this.className = value;"; |
| 15 | 15 |
| 16 String get contentEditable() native "return this.contentEditable;"; | 16 String get contentEditable() native "return this.contentEditable;"; |
| 17 | 17 |
| 18 void set contentEditable(String value) native "this.contentEditable = value;"; | 18 void set contentEditable(String value) native "this.contentEditable = value;"; |
| 19 | 19 |
| 20 String get dir() native "return this.dir;"; | 20 String get dir() native "return this.dir;"; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 40 String get innerText() native "return this.innerText;"; | 40 String get innerText() native "return this.innerText;"; |
| 41 | 41 |
| 42 void set innerText(String value) native "this.innerText = value;"; | 42 void set innerText(String value) native "this.innerText = value;"; |
| 43 | 43 |
| 44 bool get isContentEditable() native "return this.isContentEditable;"; | 44 bool get isContentEditable() native "return this.isContentEditable;"; |
| 45 | 45 |
| 46 String get itemId() native "return this.itemId;"; | 46 String get itemId() native "return this.itemId;"; |
| 47 | 47 |
| 48 void set itemId(String value) native "this.itemId = value;"; | 48 void set itemId(String value) native "this.itemId = value;"; |
| 49 | 49 |
| 50 DOMSettableTokenListJs get itemProp() native "return this.itemProp;"; | 50 _DOMSettableTokenListJs get itemProp() native "return this.itemProp;"; |
| 51 | 51 |
| 52 DOMSettableTokenListJs get itemRef() native "return this.itemRef;"; | 52 _DOMSettableTokenListJs get itemRef() native "return this.itemRef;"; |
| 53 | 53 |
| 54 bool get itemScope() native "return this.itemScope;"; | 54 bool get itemScope() native "return this.itemScope;"; |
| 55 | 55 |
| 56 void set itemScope(bool value) native "this.itemScope = value;"; | 56 void set itemScope(bool value) native "this.itemScope = value;"; |
| 57 | 57 |
| 58 DOMSettableTokenListJs get itemType() native "return this.itemType;"; | 58 _DOMSettableTokenListJs get itemType() native "return this.itemType;"; |
| 59 | 59 |
| 60 Object get itemValue() native "return this.itemValue;"; | 60 Object get itemValue() native "return this.itemValue;"; |
| 61 | 61 |
| 62 void set itemValue(Object value) native "this.itemValue = value;"; | 62 void set itemValue(Object value) native "this.itemValue = value;"; |
| 63 | 63 |
| 64 String get lang() native "return this.lang;"; | 64 String get lang() native "return this.lang;"; |
| 65 | 65 |
| 66 void set lang(String value) native "this.lang = value;"; | 66 void set lang(String value) native "this.lang = value;"; |
| 67 | 67 |
| 68 String get outerHTML() native "return this.outerHTML;"; | 68 String get outerHTML() native "return this.outerHTML;"; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 82 void set tabIndex(int value) native "this.tabIndex = value;"; | 82 void set tabIndex(int value) native "this.tabIndex = value;"; |
| 83 | 83 |
| 84 String get title() native "return this.title;"; | 84 String get title() native "return this.title;"; |
| 85 | 85 |
| 86 void set title(String value) native "this.title = value;"; | 86 void set title(String value) native "this.title = value;"; |
| 87 | 87 |
| 88 String get webkitdropzone() native "return this.webkitdropzone;"; | 88 String get webkitdropzone() native "return this.webkitdropzone;"; |
| 89 | 89 |
| 90 void set webkitdropzone(String value) native "this.webkitdropzone = value;"; | 90 void set webkitdropzone(String value) native "this.webkitdropzone = value;"; |
| 91 | 91 |
| 92 ElementJs insertAdjacentElement(String where, ElementJs element) native; | 92 _ElementJs insertAdjacentElement(String where, _ElementJs element) native; |
| 93 | 93 |
| 94 void insertAdjacentHTML(String where, String html) native; | 94 void insertAdjacentHTML(String where, String html) native; |
| 95 | 95 |
| 96 void insertAdjacentText(String where, String text) native; | 96 void insertAdjacentText(String where, String text) native; |
| 97 } | 97 } |
| OLD | NEW |