| 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; |
| 5 |
| 4 int childElementCount; | 6 int childElementCount; |
| 5 | 7 |
| 6 int clientHeight; | 8 int clientHeight; |
| 7 | 9 |
| 8 int clientLeft; | 10 int clientLeft; |
| 9 | 11 |
| 10 int clientTop; | 12 int clientTop; |
| 11 | 13 |
| 12 int clientWidth; | 14 int clientWidth; |
| 13 | 15 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 89 |
| 88 void setAttribute(String name, String value) native; | 90 void setAttribute(String name, String value) native; |
| 89 | 91 |
| 90 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; | 92 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; |
| 91 | 93 |
| 92 Attr setAttributeNode(Attr newAttr) native; | 94 Attr setAttributeNode(Attr newAttr) native; |
| 93 | 95 |
| 94 Attr setAttributeNodeNS(Attr newAttr) native; | 96 Attr setAttributeNodeNS(Attr newAttr) native; |
| 95 | 97 |
| 96 bool webkitMatchesSelector(String selectors) native; | 98 bool webkitMatchesSelector(String selectors) native; |
| 99 |
| 100 void webkitRequestFullScreen(int flags) native; |
| 97 } | 101 } |
| OLD | NEW |