| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 NodeList getElementsByName(String elementName) native; | 128 NodeList getElementsByName(String elementName) native; |
| 129 | 129 |
| 130 NodeList getElementsByTagName(String tagname) native; | 130 NodeList getElementsByTagName(String tagname) native; |
| 131 | 131 |
| 132 NodeList getElementsByTagNameNS(String namespaceURI, String localName) native; | 132 NodeList getElementsByTagNameNS(String namespaceURI, String localName) native; |
| 133 | 133 |
| 134 CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement) na
tive; | 134 CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement) na
tive; |
| 135 | 135 |
| 136 DOMSelection getSelection() native; | 136 DOMSelection getSelection() native; |
| 137 | 137 |
| 138 Node importNode(Node importedNode, [bool deep = null]) native; | 138 Node importNode(Node importedNode, bool deep) native; |
| 139 | 139 |
| 140 bool queryCommandEnabled(String command) native; | 140 bool queryCommandEnabled(String command) native; |
| 141 | 141 |
| 142 bool queryCommandIndeterm(String command) native; | 142 bool queryCommandIndeterm(String command) native; |
| 143 | 143 |
| 144 bool queryCommandState(String command) native; | 144 bool queryCommandState(String command) native; |
| 145 | 145 |
| 146 bool queryCommandSupported(String command) native; | 146 bool queryCommandSupported(String command) native; |
| 147 | 147 |
| 148 String queryCommandValue(String command) native; | 148 String queryCommandValue(String command) native; |
| 149 | 149 |
| 150 Element querySelector(String selectors) native; | 150 Element querySelector(String selectors) native; |
| 151 | 151 |
| 152 NodeList querySelectorAll(String selectors) native; | 152 NodeList querySelectorAll(String selectors) native; |
| 153 | 153 |
| 154 void webkitCancelFullScreen() native; | 154 void webkitCancelFullScreen() native; |
| 155 | |
| 156 WebKitNamedFlow webkitGetFlowByName(String name) native; | |
| 157 } | 155 } |
| OLD | NEW |