| 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 25 matching lines...) Expand all Loading... |
| 36 HTMLCollection images; | 36 HTMLCollection images; |
| 37 | 37 |
| 38 DOMImplementation implementation; | 38 DOMImplementation implementation; |
| 39 | 39 |
| 40 String inputEncoding; | 40 String inputEncoding; |
| 41 | 41 |
| 42 String lastModified; | 42 String lastModified; |
| 43 | 43 |
| 44 HTMLCollection links; | 44 HTMLCollection links; |
| 45 | 45 |
| 46 Location location; |
| 47 |
| 46 EventListener onabort; | 48 EventListener onabort; |
| 47 | 49 |
| 48 EventListener onbeforecopy; | 50 EventListener onbeforecopy; |
| 49 | 51 |
| 50 EventListener onbeforecut; | 52 EventListener onbeforecut; |
| 51 | 53 |
| 52 EventListener onbeforepaste; | 54 EventListener onbeforepaste; |
| 53 | 55 |
| 54 EventListener onblur; | 56 EventListener onblur; |
| 55 | 57 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 Node adoptNode(Node source) native; | 162 Node adoptNode(Node source) native; |
| 161 | 163 |
| 162 Range caretRangeFromPoint(int x, int y) native; | 164 Range caretRangeFromPoint(int x, int y) native; |
| 163 | 165 |
| 164 Attr createAttribute(String name) native; | 166 Attr createAttribute(String name) native; |
| 165 | 167 |
| 166 Attr createAttributeNS(String namespaceURI, String qualifiedName) native; | 168 Attr createAttributeNS(String namespaceURI, String qualifiedName) native; |
| 167 | 169 |
| 168 CDATASection createCDATASection(String data) native; | 170 CDATASection createCDATASection(String data) native; |
| 169 | 171 |
| 170 CSSStyleDeclaration createCSSStyleDeclaration() native; | |
| 171 | |
| 172 Comment createComment(String data) native; | 172 Comment createComment(String data) native; |
| 173 | 173 |
| 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 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 208 NodeList getElementsByClassName(String tagname) native; | 208 NodeList getElementsByClassName(String tagname) native; |
| 209 | 209 |
| 210 NodeList getElementsByName(String elementName) native; | 210 NodeList getElementsByName(String elementName) native; |
| 211 | 211 |
| 212 NodeList getElementsByTagName(String tagname) native; | 212 NodeList getElementsByTagName(String tagname) native; |
| 213 | 213 |
| 214 NodeList getElementsByTagNameNS(String namespaceURI, String localName) native; | 214 NodeList getElementsByTagNameNS(String namespaceURI, String localName) native; |
| 215 | 215 |
| 216 CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement) na
tive; | 216 CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement) na
tive; |
| 217 | 217 |
| 218 DOMSelection getSelection() native; |
| 219 |
| 218 Node importNode(Node importedNode, bool deep) native; | 220 Node importNode(Node importedNode, bool deep) native; |
| 219 | 221 |
| 220 bool queryCommandEnabled(String command) native; | 222 bool queryCommandEnabled(String command) native; |
| 221 | 223 |
| 222 bool queryCommandIndeterm(String command) native; | 224 bool queryCommandIndeterm(String command) native; |
| 223 | 225 |
| 224 bool queryCommandState(String command) native; | 226 bool queryCommandState(String command) native; |
| 225 | 227 |
| 226 bool queryCommandSupported(String command) native; | 228 bool queryCommandSupported(String command) native; |
| 227 | 229 |
| 228 String queryCommandValue(String command) native; | 230 String queryCommandValue(String command) native; |
| 229 | 231 |
| 230 Element querySelector(String selectors) native; | 232 Element querySelector(String selectors) native; |
| 231 | 233 |
| 232 NodeList querySelectorAll(String selectors) native; | 234 NodeList querySelectorAll(String selectors) native; |
| 233 } | 235 } |
| OLD | NEW |