| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 void setAttribute(String name, String value) native; | 88 void setAttribute(String name, String value) native; |
| 89 | 89 |
| 90 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; | 90 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; |
| 91 | 91 |
| 92 Attr setAttributeNode(Attr newAttr) native; | 92 Attr setAttributeNode(Attr newAttr) native; |
| 93 | 93 |
| 94 Attr setAttributeNodeNS(Attr newAttr) native; | 94 Attr setAttributeNodeNS(Attr newAttr) native; |
| 95 | 95 |
| 96 bool webkitMatchesSelector(String selectors) native; | 96 bool webkitMatchesSelector(String selectors) native; |
| 97 } | 97 } |
| OLD | NEW |