| Index: tools/dom/templates/html/dartium/html_dartium.darttemplate
|
| diff --git a/tools/dom/templates/html/dartium/html_dartium.darttemplate b/tools/dom/templates/html/dartium/html_dartium.darttemplate
|
| index cc65de7a42f69efbbb9d53dd58038c0a6a887d6a..fdec63380364273d20ad833f1fa6884d5efb2a75 100644
|
| --- a/tools/dom/templates/html/dartium/html_dartium.darttemplate
|
| +++ b/tools/dom/templates/html/dartium/html_dartium.darttemplate
|
| @@ -19,7 +19,7 @@
|
| *
|
| * * If you've never written a web app before, try our
|
| * tutorials—[A Game of Darts](http://dartlang.org/docs/tutorials).
|
| - *
|
| + *
|
| * * To see some web-based Dart apps in action and to play with the code,
|
| * download
|
| * [Dart Editor](http://www.dartlang.org/#get-started)
|
| @@ -80,7 +80,6 @@ part '$AUXILIARY_DIR/_HttpRequestUtils.dart';
|
| part '$AUXILIARY_DIR/_ListIterators.dart';
|
| part '$AUXILIARY_DIR/dartium_KeyEvent.dart';
|
| part '$AUXILIARY_DIR/dartium_Platform.dart';
|
| -part '$AUXILIARY_DIR/shared_html.dart';
|
|
|
| part '$AUXILIARY_DIR/native_DOMImplementation.dart';
|
|
|
| @@ -120,6 +119,10 @@ HtmlDocument get document {
|
| return _document;
|
| }
|
|
|
| +
|
| +Element query(String selector) => document.query(selector);
|
| +ElementList queryAll(String selector) => document.queryAll(selector);
|
| +
|
| int _getNewIsolateId() => _Utils._getNewIsolateId();
|
|
|
| bool _callPortInitialized = false;
|
|
|