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

Unified Diff: lib/html/frog/html_frog.dart

Issue 10536006: Fix NodeSelector interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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:
Download patch
« lib/dom/idl/dart/dart.idl ('K') | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/frog/html_frog.dart
diff --git a/lib/html/frog/html_frog.dart b/lib/html/frog/html_frog.dart
index 795c619bcf34a0528c95680f7811c5f9b9cb899d..8e46ee888f321b6fc4326f5df2dfa0000a459fab 100644
--- a/lib/html/frog/html_frog.dart
+++ b/lib/html/frog/html_frog.dart
@@ -22859,8 +22859,6 @@ interface ElementRect {
/// @domName Element
interface Element extends Node, NodeSelector default _ElementFactoryProvider {
-// TODO(jacobr): switch back to:
-// interface Element extends Node, NodeSelector, ElementTraversal default _ElementImpl {
Element.html(String html);
Element.tag(String tag);
@@ -26986,11 +26984,11 @@ interface NodeSelector {
// ElementList queryAll(String selectors);
- /** @domName NodeSelector.querySelector */
- Element querySelector(String selectors);
+ /** @domName NodeSelector.query */
+ Element query(String selectors);
- /** @domName NodeSelector.querySelectorAll */
- NodeList querySelectorAll(String selectors);
+ /** @domName NodeSelector.queryAll */
+ NodeList queryAll(String selectors);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
« lib/dom/idl/dart/dart.idl ('K') | « lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698