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

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

Issue 8895013: Add enables consistent with Chrome's WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Alpha the ENABLEs Created 9 years 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 XPathNSResolver createNSResolver(Node nodeResolver); 125 XPathNSResolver createNSResolver(Node nodeResolver);
126 126
127 NodeIterator createNodeIterator(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences); 127 NodeIterator createNodeIterator(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences);
128 128
129 ProcessingInstruction createProcessingInstruction(String target, String data); 129 ProcessingInstruction createProcessingInstruction(String target, String data);
130 130
131 Range createRange(); 131 Range createRange();
132 132
133 Text createTextNode(String data); 133 Text createTextNode(String data);
134 134
135 Touch createTouch(DOMWindow window, EventTarget target, int identifier, int pa geX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkitRadiusY, num webkitRotationAngle, num webkitForce);
136
137 TouchList createTouchList();
138
135 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences); 139 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences);
136 140
137 Element elementFromPoint(int x, int y); 141 Element elementFromPoint(int x, int y);
138 142
139 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult); 143 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso lver, int type, XPathResult inResult);
140 144
141 bool execCommand(String command, bool userInterface, String value); 145 bool execCommand(String command, bool userInterface, String value);
142 146
143 Object getCSSCanvasContext(String contextId, String name, int width, int heigh t); 147 Object getCSSCanvasContext(String contextId, String name, int width, int heigh t);
144 148
(...skipping 22 matching lines...) Expand all
167 bool queryCommandSupported(String command); 171 bool queryCommandSupported(String command);
168 172
169 String queryCommandValue(String command); 173 String queryCommandValue(String command);
170 174
171 Element querySelector(String selectors); 175 Element querySelector(String selectors);
172 176
173 NodeList querySelectorAll(String selectors); 177 NodeList querySelectorAll(String selectors);
174 178
175 void webkitCancelFullScreen(); 179 void webkitCancelFullScreen();
176 } 180 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/DOMWindow.dart ('k') | client/dom/generated/src/interface/File.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698