| 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 73036e942549638a0aa5469387a4472402a18315..04d19d387be6cd301b1deda599924a002874cd41 100644
|
| --- a/lib/html/templates/html/dart2js/html_dart2js.darttemplate
|
| +++ b/lib/html/templates/html/dart2js/html_dart2js.darttemplate
|
| @@ -37,12 +37,12 @@ $!GENERATED_DART_FILES
|
| #source('$AUXILIARY_DIR/_Lists.dart');
|
|
|
|
|
| -LocalWindow get window() => JS('LocalWindow', 'window');
|
| -_LocalWindowImpl get _window() => JS('_LocalWindowImpl', 'window');
|
| +LocalWindow get window => JS('LocalWindow', 'window');
|
| +_LocalWindowImpl get _window => JS('_LocalWindowImpl', 'window');
|
|
|
| -Document get document() => JS('Document', 'document');
|
| +Document get document => JS('Document', 'document');
|
|
|
| -_DocumentImpl get _document() => JS('_DocumentImpl', 'document');
|
| +_DocumentImpl get _document => JS('_DocumentImpl', 'document');
|
|
|
| Element query(String selector) => _document.query(selector);
|
| List<Element> queryAll(String selector) => _document.queryAll(selector);
|
|
|