| Index: lib/html/templates/html/dartium/html_dartium.darttemplate
|
| diff --git a/lib/html/templates/html/dartium/html_dartium.darttemplate b/lib/html/templates/html/dartium/html_dartium.darttemplate
|
| index a4d92148f32a293571b7c64b0b3e18950511e045..a87f8eddec5b0503a07302f48262eec8cd34d95f 100644
|
| --- a/lib/html/templates/html/dartium/html_dartium.darttemplate
|
| +++ b/lib/html/templates/html/dartium/html_dartium.darttemplate
|
| @@ -59,7 +59,7 @@ Document get document {
|
| Document get _document => _window.document;
|
|
|
| Element query(String selector) => _document.query(selector);
|
| -ElementList queryAll(String selector) => _document.queryAll(selector);
|
| +List<Element> queryAll(String selector) => _document.queryAll(selector);
|
|
|
| int _getNewIsolateId() => _Utils._getNewIsolateId();
|
|
|
|
|