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

Unified Diff: tools/dom/templates/html/impl/impl_Document.darttemplate

Issue 14941002: Aggregate CSS manipulation functions in html lib. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: tools/dom/templates/html/impl/impl_Document.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_Document.darttemplate b/tools/dom/templates/html/impl/impl_Document.darttemplate
index 73b40fa1f133ad18d2ee6c55195b4bc29c7c371c..1a2a8d3aa0f80631a0ae05153b9d4af4cc6434d9 100644
--- a/tools/dom/templates/html/impl/impl_Document.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Document.darttemplate
@@ -32,7 +32,7 @@ $!MEMBERS
* For details about CSS selector syntax, see the
* [CSS selector specification](http://www.w3.org/TR/css3-selectors/).
*/
- List<Element> queryAll(String selectors) {
- return new _FrozenElementList._wrap($dom_querySelectorAll(selectors));
+ HtmlList<Element> queryAll(String selectors) {
blois 2013/05/03 20:13:37 Can we make this ElementList<>?
+ return new HtmlList._wrap($dom_querySelectorAll(selectors));
}
}

Powered by Google App Engine
This is Rietveld 408576698