| OLD | NEW |
| 1 | 1 |
| 2 class Element extends Node native "Element" { | 2 class Element extends Node native "*Element" { |
| 3 | 3 |
| 4 static final int ALLOW_KEYBOARD_INPUT = 1; | 4 static final int ALLOW_KEYBOARD_INPUT = 1; |
| 5 | 5 |
| 6 int childElementCount; | 6 int childElementCount; |
| 7 | 7 |
| 8 int clientHeight; | 8 int clientHeight; |
| 9 | 9 |
| 10 int clientLeft; | 10 int clientLeft; |
| 11 | 11 |
| 12 int clientTop; | 12 int clientTop; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; | 92 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; |
| 93 | 93 |
| 94 Attr setAttributeNode(Attr newAttr) native; | 94 Attr setAttributeNode(Attr newAttr) native; |
| 95 | 95 |
| 96 Attr setAttributeNodeNS(Attr newAttr) native; | 96 Attr setAttributeNodeNS(Attr newAttr) native; |
| 97 | 97 |
| 98 bool webkitMatchesSelector(String selectors) native; | 98 bool webkitMatchesSelector(String selectors) native; |
| 99 | 99 |
| 100 void webkitRequestFullScreen(int flags) native; | 100 void webkitRequestFullScreen(int flags) native; |
| 101 } | 101 } |
| OLD | NEW |