| OLD | NEW |
| 1 | 1 |
| 2 class _DocumentJs extends _NodeJs implements Document native "*Document" { | 2 class _DocumentJs extends _NodeJs implements Document native "*Document" { |
| 3 | 3 |
| 4 final String URL; | 4 final String URL; |
| 5 | 5 |
| 6 final _HTMLCollectionJs anchors; | 6 final _HTMLCollectionJs anchors; |
| 7 | 7 |
| 8 final _HTMLCollectionJs applets; | 8 final _HTMLCollectionJs applets; |
| 9 | 9 |
| 10 _HTMLElementJs body; | 10 _HTMLElementJs body; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 _TouchListJs createTouchList() native; | 112 _TouchListJs createTouchList() native; |
| 113 | 113 |
| 114 _TreeWalkerJs createTreeWalker(_NodeJs root, int whatToShow, _NodeFilterJs fil
ter, bool expandEntityReferences) native; | 114 _TreeWalkerJs createTreeWalker(_NodeJs root, int whatToShow, _NodeFilterJs fil
ter, bool expandEntityReferences) native; |
| 115 | 115 |
| 116 _ElementJs elementFromPoint(int x, int y) native; | 116 _ElementJs elementFromPoint(int x, int y) native; |
| 117 | 117 |
| 118 _XPathResultJs evaluate(String expression, _NodeJs contextNode, _XPathNSResolv
erJs resolver, int type, _XPathResultJs inResult) native; | 118 _XPathResultJs evaluate(String expression, _NodeJs contextNode, _XPathNSResolv
erJs resolver, int type, _XPathResultJs inResult) native; |
| 119 | 119 |
| 120 bool execCommand(String command, bool userInterface, String value) native; | 120 bool execCommand(String command, bool userInterface, String value) native; |
| 121 | 121 |
| 122 Object getCSSCanvasContext(String contextId, String name, int width, int heigh
t) native; | 122 _CanvasRenderingContextJs getCSSCanvasContext(String contextId, String name, i
nt width, int height) native; |
| 123 | 123 |
| 124 _ElementJs getElementById(String elementId) native; | 124 _ElementJs getElementById(String elementId) native; |
| 125 | 125 |
| 126 _NodeListJs getElementsByClassName(String tagname) native; | 126 _NodeListJs getElementsByClassName(String tagname) native; |
| 127 | 127 |
| 128 _NodeListJs getElementsByName(String elementName) native; | 128 _NodeListJs getElementsByName(String elementName) native; |
| 129 | 129 |
| 130 _NodeListJs getElementsByTagName(String tagname) native; | 130 _NodeListJs getElementsByTagName(String tagname) native; |
| 131 | 131 |
| 132 _NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) nati
ve; | 132 _NodeListJs getElementsByTagNameNS(String namespaceURI, String localName) nati
ve; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 148 String queryCommandValue(String command) native; | 148 String queryCommandValue(String command) native; |
| 149 | 149 |
| 150 _ElementJs querySelector(String selectors) native; | 150 _ElementJs querySelector(String selectors) native; |
| 151 | 151 |
| 152 _NodeListJs querySelectorAll(String selectors) native; | 152 _NodeListJs querySelectorAll(String selectors) native; |
| 153 | 153 |
| 154 void webkitCancelFullScreen() native; | 154 void webkitCancelFullScreen() native; |
| 155 | 155 |
| 156 _WebKitNamedFlowJs webkitGetFlowByName(String name) native; | 156 _WebKitNamedFlowJs webkitGetFlowByName(String name) native; |
| 157 } | 157 } |
| OLD | NEW |