| Index: lib/dom/templates/html/dartium/html_dartium.darttemplate
|
| diff --git a/lib/dom/templates/html/dartium/html_dartium.darttemplate b/lib/dom/templates/html/dartium/html_dartium.darttemplate
|
| index 1cad40a910dff5841046efad9920af1c83b5fe93..30bfe26622739d613985b9576fc7bed9f59c1545 100644
|
| --- a/lib/dom/templates/html/dartium/html_dartium.darttemplate
|
| +++ b/lib/dom/templates/html/dartium/html_dartium.darttemplate
|
| @@ -56,6 +56,9 @@ Document get document() {
|
|
|
| Document get _document() => _window.document;
|
|
|
| +Element query(String selector) => _document.query(selector);
|
| +ElementList queryAll(String selector) => _document.queryAll(selector);
|
| +
|
| class _Null {
|
| const _Null();
|
| }
|
|
|