| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface Document extends Node, NodeSelector { | 7 interface Document extends Node, NodeSelector { |
| 8 | 8 |
| 9 String get URL(); | 9 String get URL(); |
| 10 | 10 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 NodeList getElementsByName(String elementName); | 153 NodeList getElementsByName(String elementName); |
| 154 | 154 |
| 155 NodeList getElementsByTagName(String tagname); | 155 NodeList getElementsByTagName(String tagname); |
| 156 | 156 |
| 157 NodeList getElementsByTagNameNS(String namespaceURI, String localName); | 157 NodeList getElementsByTagNameNS(String namespaceURI, String localName); |
| 158 | 158 |
| 159 CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement); | 159 CSSStyleDeclaration getOverrideStyle(Element element, String pseudoElement); |
| 160 | 160 |
| 161 DOMSelection getSelection(); | 161 DOMSelection getSelection(); |
| 162 | 162 |
| 163 Node importNode(Node importedNode, bool deep); | 163 Node importNode(Node importedNode, [bool deep]); |
| 164 | 164 |
| 165 bool queryCommandEnabled(String command); | 165 bool queryCommandEnabled(String command); |
| 166 | 166 |
| 167 bool queryCommandIndeterm(String command); | 167 bool queryCommandIndeterm(String command); |
| 168 | 168 |
| 169 bool queryCommandState(String command); | 169 bool queryCommandState(String command); |
| 170 | 170 |
| 171 bool queryCommandSupported(String command); | 171 bool queryCommandSupported(String command); |
| 172 | 172 |
| 173 String queryCommandValue(String command); | 173 String queryCommandValue(String command); |
| 174 | 174 |
| 175 Element querySelector(String selectors); | 175 Element querySelector(String selectors); |
| 176 | 176 |
| 177 NodeList querySelectorAll(String selectors); | 177 NodeList querySelectorAll(String selectors); |
| 178 | 178 |
| 179 void webkitCancelFullScreen(); | 179 void webkitCancelFullScreen(); |
| 180 |
| 181 WebKitNamedFlow webkitGetFlowByName(String name); |
| 180 } | 182 } |
| OLD | NEW |