| 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; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 void setAttribute(String name, String value) native; | 176 void setAttribute(String name, String value) native; |
| 177 | 177 |
| 178 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; | 178 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; |
| 179 | 179 |
| 180 Attr setAttributeNode(Attr newAttr) native; | 180 Attr setAttributeNode(Attr newAttr) native; |
| 181 | 181 |
| 182 Attr setAttributeNodeNS(Attr newAttr) native; | 182 Attr setAttributeNodeNS(Attr newAttr) native; |
| 183 | 183 |
| 184 bool webkitMatchesSelector(String selectors) native; | 184 bool webkitMatchesSelector(String selectors) native; |
| 185 } | 185 } |
| OLD | NEW |