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

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

Issue 9615032: Refresh dom_frog. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 final String URL; 9 final String URL;
10 10
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 TouchList createTouchList(); 117 TouchList createTouchList();
118 118
119 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences); 119 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences);
120 120
121 Element elementFromPoint(int x, int y); 121 Element elementFromPoint(int x, int y);
122 122
123 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult); 123 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult);
124 124
125 bool execCommand(String command, bool userInterface, String value); 125 bool execCommand(String command, bool userInterface, String value);
126 126
127 Object getCSSCanvasContext(String contextId, String name, int width, int heigh t); 127 CanvasRenderingContext getCSSCanvasContext(String contextId, String name, int width, int height);
128 128
129 Element getElementById(String elementId); 129 Element getElementById(String elementId);
130 130
131 NodeList getElementsByClassName(String tagname); 131 NodeList getElementsByClassName(String tagname);
132 132
133 NodeList getElementsByName(String elementName); 133 NodeList getElementsByName(String elementName);
134 134
135 NodeList getElementsByTagName(String tagname); 135 NodeList getElementsByTagName(String tagname);
136 136
137 NodeList getElementsByTagNameNS(String namespaceURI, String localName); 137 NodeList getElementsByTagNameNS(String namespaceURI, String localName);
(...skipping 15 matching lines...) Expand all
153 String queryCommandValue(String command); 153 String queryCommandValue(String command);
154 154
155 Element querySelector(String selectors); 155 Element querySelector(String selectors);
156 156
157 NodeList querySelectorAll(String selectors); 157 NodeList querySelectorAll(String selectors);
158 158
159 void webkitCancelFullScreen(); 159 void webkitCancelFullScreen();
160 160
161 WebKitNamedFlow webkitGetFlowByName(String name); 161 WebKitNamedFlow webkitGetFlowByName(String name);
162 } 162 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/DataTransferItem.dart ('k') | client/dom/generated/src/interface/IDBDatabase.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698