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

Side by Side Diff: client/dom/generated/src/frog/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 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
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 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DirectoryEntry.dart ('k') | client/dom/generated/src/frog/Entry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698