| Index: lib/html/templates/html/dart2js/html_dart2js.darttemplate
|
| diff --git a/lib/html/templates/html/dart2js/html_dart2js.darttemplate b/lib/html/templates/html/dart2js/html_dart2js.darttemplate
|
| index 2a0c6d09755a0b7b0eefce697437b6b63bc6e465..57431e9ce07181d75c6fc5f7ba3e5c47a5b92648 100644
|
| --- a/lib/html/templates/html/dart2js/html_dart2js.darttemplate
|
| +++ b/lib/html/templates/html/dart2js/html_dart2js.darttemplate
|
| @@ -44,7 +44,7 @@ Document get document() native "return document;";
|
| _DocumentImpl get _document() native "return document;";
|
|
|
| Element query(String selector) => _document.query(selector);
|
| -ElementList queryAll(String selector) => _document.queryAll(selector);
|
| +List<Element> queryAll(String selector) => _document.queryAll(selector);
|
|
|
| // Workaround for tags like <cite> that lack their own Element subclass --
|
| // Dart issue 1990.
|
|
|