| 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 6767115fcfd80a80444e7c7958cd9c2afc49913a..0640f994f90500c8ade9eb03ff719e0f5f088a58 100644
|
| --- a/tools/dom/templates/html/impl/impl_Document.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Document.darttemplate
|
| @@ -25,7 +25,7 @@ $!MEMBERS
|
| * For details about CSS selector syntax, see the
|
| * [CSS selector specification](http://www.w3.org/TR/css3-selectors/).
|
| */
|
| - ElementList querySelectorAll(String selectors) {
|
| + ElementList<Element> querySelectorAll(String selectors) {
|
| return new _FrozenElementList._wrap(_querySelectorAll(selectors));
|
| }
|
|
|
| @@ -45,7 +45,7 @@ $!MEMBERS
|
| @deprecated
|
| @Experimental()
|
| @DomName('Document.querySelectorAll')
|
| - ElementList queryAll(String relativeSelectors) =>
|
| + ElementList<Element> queryAll(String relativeSelectors) =>
|
| querySelectorAll(relativeSelectors);
|
|
|
| /// Checks if [registerElement] is supported on the current platform.
|
|
|