OLD | NEW |
1 | 1 |
2 class _ElementJs extends _NodeJs implements Element native "*Element" { | 2 class _ElementJs extends _NodeJs implements Element native "*Element" { |
3 | 3 |
4 static final int ALLOW_KEYBOARD_INPUT = 1; | 4 static final int ALLOW_KEYBOARD_INPUT = 1; |
5 | 5 |
6 final int childElementCount; | 6 final int childElementCount; |
7 | 7 |
8 final int clientHeight; | 8 final int clientHeight; |
9 | 9 |
10 final int clientLeft; | 10 final int clientLeft; |
(...skipping 25 matching lines...) Expand all Loading... |
36 int scrollLeft; | 36 int scrollLeft; |
37 | 37 |
38 int scrollTop; | 38 int scrollTop; |
39 | 39 |
40 final int scrollWidth; | 40 final int scrollWidth; |
41 | 41 |
42 final _CSSStyleDeclarationJs style; | 42 final _CSSStyleDeclarationJs style; |
43 | 43 |
44 final String tagName; | 44 final String tagName; |
45 | 45 |
| 46 final String webkitRegionOverflow; |
| 47 |
46 void blur() native; | 48 void blur() native; |
47 | 49 |
48 void focus() native; | 50 void focus() native; |
49 | 51 |
50 String getAttribute(String name) native; | 52 String getAttribute(String name) native; |
51 | 53 |
52 String getAttributeNS(String namespaceURI, String localName) native; | 54 String getAttributeNS(String namespaceURI, String localName) native; |
53 | 55 |
54 _AttrJs getAttributeNode(String name) native; | 56 _AttrJs getAttributeNode(String name) native; |
55 | 57 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; | 94 void setAttributeNS(String namespaceURI, String qualifiedName, String value) n
ative; |
93 | 95 |
94 _AttrJs setAttributeNode(_AttrJs newAttr) native; | 96 _AttrJs setAttributeNode(_AttrJs newAttr) native; |
95 | 97 |
96 _AttrJs setAttributeNodeNS(_AttrJs newAttr) native; | 98 _AttrJs setAttributeNodeNS(_AttrJs newAttr) native; |
97 | 99 |
98 bool webkitMatchesSelector(String selectors) native; | 100 bool webkitMatchesSelector(String selectors) native; |
99 | 101 |
100 void webkitRequestFullScreen(int flags) native; | 102 void webkitRequestFullScreen(int flags) native; |
101 } | 103 } |
OLD | NEW |