Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: client/dom/generated/src/interface/Document.dart

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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);
182 } 180 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/DirectoryEntry.dart ('k') | client/dom/generated/src/interface/Entry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698