| OLD | NEW |
| 1 | 1 |
| 2 class Element extends Node native "Element" { | 2 class Element extends Node native "Element" { |
| 3 | 3 |
| 4 int childElementCount; | 4 int childElementCount; |
| 5 | 5 |
| 6 int clientHeight; | 6 int clientHeight; |
| 7 | 7 |
| 8 int clientLeft; | 8 int clientLeft; |
| 9 | 9 |
| 10 int clientTop; | 10 int clientTop; |
| 11 | 11 |
| 12 int clientWidth; | 12 int clientWidth; |
| 13 | 13 |
| 14 Element firstElementChild; | 14 Element firstElementChild; |
| 15 | 15 |
| 16 Element lastElementChild; | 16 Element lastElementChild; |
| 17 | 17 |
| 18 Element nextElementSibling; | 18 Element nextElementSibling; |
| 19 | 19 |
| 20 int offsetHeight; | 20 int offsetHeight; |
| 21 | 21 |
| 22 int offsetLeft; | 22 int offsetLeft; |
| 23 | 23 |
| 24 Element offsetParent; | 24 Element offsetParent; |
| 25 | 25 |
| 26 int offsetTop; | 26 int offsetTop; |
| 27 | 27 |
| 28 int offsetWidth; | 28 int offsetWidth; |
| 29 | 29 |
| 30 EventListener onabort; | |
| 31 | |
| 32 EventListener onbeforecopy; | |
| 33 | |
| 34 EventListener onbeforecut; | |
| 35 | |
| 36 EventListener onbeforepaste; | |
| 37 | |
| 38 EventListener onblur; | |
| 39 | |
| 40 EventListener onchange; | |
| 41 | |
| 42 EventListener onclick; | |
| 43 | |
| 44 EventListener oncontextmenu; | |
| 45 | |
| 46 EventListener oncopy; | |
| 47 | |
| 48 EventListener oncut; | |
| 49 | |
| 50 EventListener ondblclick; | |
| 51 | |
| 52 EventListener ondrag; | |
| 53 | |
| 54 EventListener ondragend; | |
| 55 | |
| 56 EventListener ondragenter; | |
| 57 | |
| 58 EventListener ondragleave; | |
| 59 | |
| 60 EventListener ondragover; | |
| 61 | |
| 62 EventListener ondragstart; | |
| 63 | |
| 64 EventListener ondrop; | |
| 65 | |
| 66 EventListener onerror; | |
| 67 | |
| 68 EventListener onfocus; | |
| 69 | |
| 70 EventListener oninput; | |
| 71 | |
| 72 EventListener oninvalid; | |
| 73 | |
| 74 EventListener onkeydown; | |
| 75 | |
| 76 EventListener onkeypress; | |
| 77 | |
| 78 EventListener onkeyup; | |
| 79 | |
| 80 EventListener onload; | |
| 81 | |
| 82 EventListener onmousedown; | |
| 83 | |
| 84 EventListener onmousemove; | |
| 85 | |
| 86 EventListener onmouseout; | |
| 87 | |
| 88 EventListener onmouseover; | |
| 89 | |
| 90 EventListener onmouseup; | |
| 91 | |
| 92 EventListener onmousewheel; | |
| 93 | |
| 94 EventListener onpaste; | |
| 95 | |
| 96 EventListener onreset; | |
| 97 | |
| 98 EventListener onscroll; | |
| 99 | |
| 100 EventListener onsearch; | |
| 101 | |
| 102 EventListener onselect; | |
| 103 | |
| 104 EventListener onselectstart; | |
| 105 | |
| 106 EventListener onsubmit; | |
| 107 | |
| 108 EventListener ontouchcancel; | |
| 109 | |
| 110 EventListener ontouchend; | |
| 111 | |
| 112 EventListener ontouchmove; | |
| 113 | |
| 114 EventListener ontouchstart; | |
| 115 | |
| 116 EventListener onwebkitfullscreenchange; | |
| 117 | |
| 118 Element previousElementSibling; | 30 Element previousElementSibling; |
| 119 | 31 |
| 120 int scrollHeight; | 32 int scrollHeight; |
| 121 | 33 |
| 122 int scrollLeft; | 34 int scrollLeft; |
| 123 | 35 |
| 124 int scrollTop; | 36 int scrollTop; |
| 125 | 37 |
| 126 int scrollWidth; | 38 int scrollWidth; |
| 127 | 39 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 void setAttribute(String name, String value) native; | 88 void setAttribute(String name, String value) native; |
| 177 | 89 |
| 178 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; | 90 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; |
| 179 | 91 |
| 180 Attr setAttributeNode(Attr newAttr) native; | 92 Attr setAttributeNode(Attr newAttr) native; |
| 181 | 93 |
| 182 Attr setAttributeNodeNS(Attr newAttr) native; | 94 Attr setAttributeNodeNS(Attr newAttr) native; |
| 183 | 95 |
| 184 bool webkitMatchesSelector(String selectors) native; | 96 bool webkitMatchesSelector(String selectors) native; |
| 185 } | 97 } |
| OLD | NEW |