Chromium Code Reviews| 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)); |
| } |
| } |