| OLD | NEW |
| 1 | 1 |
| 2 class Document extends Node native "Document" { | 2 class Document extends Node native "Document" { |
| 3 | 3 |
| 4 String URL; | 4 String URL; |
| 5 | 5 |
| 6 HTMLCollection anchors; | 6 HTMLCollection anchors; |
| 7 | 7 |
| 8 HTMLCollection applets; | 8 HTMLCollection applets; |
| 9 | 9 |
| 10 HTMLElement body; | 10 HTMLElement body; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 DocumentFragment createDocumentFragment() native; | 174 DocumentFragment createDocumentFragment() native; |
| 175 | 175 |
| 176 Element createElement(String tagName) native; | 176 Element createElement(String tagName) native; |
| 177 | 177 |
| 178 Element createElementNS(String namespaceURI, String qualifiedName) native; | 178 Element createElementNS(String namespaceURI, String qualifiedName) native; |
| 179 | 179 |
| 180 EntityReference createEntityReference(String name) native; | 180 EntityReference createEntityReference(String name) native; |
| 181 | 181 |
| 182 Event createEvent(String eventType) native; | 182 Event createEvent(String eventType) native; |
| 183 | 183 |
| 184 XPathExpression createExpression(String expression, XPathNSResolver resolver)
native; |
| 185 |
| 186 XPathNSResolver createNSResolver(Node nodeResolver) native; |
| 187 |
| 184 NodeIterator createNodeIterator(Node root, int whatToShow, NodeFilter filter,
bool expandEntityReferences) native; | 188 NodeIterator createNodeIterator(Node root, int whatToShow, NodeFilter filter,
bool expandEntityReferences) native; |
| 185 | 189 |
| 186 ProcessingInstruction createProcessingInstruction(String target, String data)
native; | 190 ProcessingInstruction createProcessingInstruction(String target, String data)
native; |
| 187 | 191 |
| 188 Range createRange() native; | 192 Range createRange() native; |
| 189 | 193 |
| 190 Text createTextNode(String data) native; | 194 Text createTextNode(String data) native; |
| 191 | 195 |
| 192 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool
expandEntityReferences) native; | 196 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool
expandEntityReferences) native; |
| 193 | 197 |
| 194 Element elementFromPoint(int x, int y) native; | 198 Element elementFromPoint(int x, int y) native; |
| 195 | 199 |
| 200 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso
lver, int type, XPathResult inResult) native; |
| 201 |
| 196 bool execCommand(String command, bool userInterface, String value) native; | 202 bool execCommand(String command, bool userInterface, String value) native; |
| 197 | 203 |
| 198 Object getCSSCanvasContext(String contextId, String name, int width, int heigh
t) native; | 204 Object getCSSCanvasContext(String contextId, String name, int width, int heigh
t) native; |
| 199 | 205 |
| 200 Element getElementById(String elementId) native; | 206 Element getElementById(String elementId) native; |
| 201 | 207 |
| 202 NodeList getElementsByClassName(String tagname) native; | 208 NodeList getElementsByClassName(String tagname) native; |
| 203 | 209 |
| 204 NodeList getElementsByName(String elementName) native; | 210 NodeList getElementsByName(String elementName) native; |
| 205 | 211 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 218 bool queryCommandState(String command) native; | 224 bool queryCommandState(String command) native; |
| 219 | 225 |
| 220 bool queryCommandSupported(String command) native; | 226 bool queryCommandSupported(String command) native; |
| 221 | 227 |
| 222 String queryCommandValue(String command) native; | 228 String queryCommandValue(String command) native; |
| 223 | 229 |
| 224 Element querySelector(String selectors) native; | 230 Element querySelector(String selectors) native; |
| 225 | 231 |
| 226 NodeList querySelectorAll(String selectors) native; | 232 NodeList querySelectorAll(String selectors) native; |
| 227 } | 233 } |
| OLD | NEW |