| OLD | NEW |
| 1 | 1 |
| 2 class HTMLElement extends Element native "HTMLElement" { | 2 class HTMLElement extends Element native "HTMLElement" { |
| 3 | 3 |
| 4 HTMLCollection children; | 4 HTMLCollection children; |
| 5 | 5 |
| 6 DOMTokenList classList; | 6 DOMTokenList classList; |
| 7 | 7 |
| 8 String className; | 8 String className; |
| 9 | 9 |
| 10 String contentEditable; | 10 String contentEditable; |
| 11 | 11 |
| 12 String dir; | 12 String dir; |
| 13 | 13 |
| 14 bool draggable; | 14 bool draggable; |
| 15 | 15 |
| 16 bool hidden; | 16 bool hidden; |
| 17 | 17 |
| 18 String id; | 18 String id; |
| 19 | 19 |
| 20 String innerHTML; | 20 String innerHTML; |
| 21 | 21 |
| 22 String innerText; | 22 String innerText; |
| 23 | 23 |
| 24 bool isContentEditable; | 24 bool isContentEditable; |
| 25 | 25 |
| 26 String itemId; |
| 27 |
| 28 DOMSettableTokenList itemProp; |
| 29 |
| 30 DOMSettableTokenList itemRef; |
| 31 |
| 32 bool itemScope; |
| 33 |
| 34 DOMSettableTokenList itemType; |
| 35 |
| 36 Object itemValue; |
| 37 |
| 26 String lang; | 38 String lang; |
| 27 | 39 |
| 28 String outerHTML; | 40 String outerHTML; |
| 29 | 41 |
| 30 String outerText; | 42 String outerText; |
| 31 | 43 |
| 32 bool spellcheck; | 44 bool spellcheck; |
| 33 | 45 |
| 34 int tabIndex; | 46 int tabIndex; |
| 35 | 47 |
| 36 String title; | 48 String title; |
| 37 | 49 |
| 38 String webkitdropzone; | 50 String webkitdropzone; |
| 39 | 51 |
| 40 Element insertAdjacentElement(String where, Element element) native; | 52 Element insertAdjacentElement(String where, Element element) native; |
| 41 | 53 |
| 42 void insertAdjacentHTML(String where, String html) native; | 54 void insertAdjacentHTML(String where, String html) native; |
| 43 | 55 |
| 44 void insertAdjacentText(String where, String text) native; | 56 void insertAdjacentText(String where, String text) native; |
| 45 } | 57 } |
| OLD | NEW |