| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 6ba1418ebd4a505fe0eaae68cdd7b4df890fffef..c516afde9607cb3b3ef89cbb46d916da976a760c 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -7919,6 +7919,9 @@ class Document extends Node
|
| DocumentEvents get on =>
|
| new DocumentEvents(this);
|
|
|
| + /** @domName HTMLDocument.activeElement */
|
| + Element get activeElement;
|
| +
|
|
|
| /** @domName Document.body */
|
| Element get body native "Document_body_Getter";
|
| @@ -8139,9 +8142,6 @@ class Document extends Node
|
| /** @domName Document.webkitExitPointerLock */
|
| void webkitExitPointerLock() native "Document_webkitExitPointerLock_Callback";
|
|
|
| - /** @domName HTMLDocument.activeElement */
|
| - Element get activeElement;
|
| -
|
| // TODO(jacobr): implement all Element methods not on Document.
|
|
|
| Element query(String selectors) {
|
| @@ -9596,6 +9596,63 @@ class Element extends Node implements ElementTraversal {
|
| ElementEvents get on =>
|
| new ElementEvents(this);
|
|
|
| + /** @domName HTMLElement.children */
|
| + HTMLCollection get $dom_children;
|
| +
|
| + /** @domName HTMLElement.contentEditable */
|
| + String contentEditable;
|
| +
|
| + /** @domName HTMLElement.dir */
|
| + String dir;
|
| +
|
| + /** @domName HTMLElement.draggable */
|
| + bool draggable;
|
| +
|
| + /** @domName HTMLElement.hidden */
|
| + bool hidden;
|
| +
|
| + /** @domName HTMLElement.id */
|
| + String id;
|
| +
|
| + /** @domName HTMLElement.innerHTML */
|
| + String innerHTML;
|
| +
|
| + /** @domName HTMLElement.isContentEditable */
|
| + bool get isContentEditable;
|
| +
|
| + /** @domName HTMLElement.lang */
|
| + String lang;
|
| +
|
| + /** @domName HTMLElement.outerHTML */
|
| + String get outerHTML;
|
| +
|
| + /** @domName HTMLElement.spellcheck */
|
| + bool spellcheck;
|
| +
|
| + /** @domName HTMLElement.tabIndex */
|
| + int tabIndex;
|
| +
|
| + /** @domName HTMLElement.title */
|
| + String title;
|
| +
|
| + /** @domName HTMLElement.translate */
|
| + bool translate;
|
| +
|
| + /** @domName HTMLElement.webkitdropzone */
|
| + String webkitdropzone;
|
| +
|
| + /** @domName HTMLElement.click */
|
| + void click();
|
| +
|
| + /** @domName HTMLElement.insertAdjacentElement */
|
| + Element insertAdjacentElement(String where, Element element);
|
| +
|
| + /** @domName HTMLElement.insertAdjacentHTML */
|
| + void insertAdjacentHTML(String where, String html);
|
| +
|
| + /** @domName HTMLElement.insertAdjacentText */
|
| + void insertAdjacentText(String where, String text);
|
| +
|
| static const int ALLOW_KEYBOARD_INPUT = 1;
|
|
|
|
|
| @@ -9790,63 +9847,6 @@ class Element extends Node implements ElementTraversal {
|
| /** @domName Element.webkitRequestPointerLock */
|
| void webkitRequestPointerLock() native "Element_webkitRequestPointerLock_Callback";
|
|
|
| - /** @domName HTMLElement.children */
|
| - HTMLCollection get $dom_children;
|
| -
|
| - /** @domName HTMLElement.contentEditable */
|
| - String contentEditable;
|
| -
|
| - /** @domName HTMLElement.dir */
|
| - String dir;
|
| -
|
| - /** @domName HTMLElement.draggable */
|
| - bool draggable;
|
| -
|
| - /** @domName HTMLElement.hidden */
|
| - bool hidden;
|
| -
|
| - /** @domName HTMLElement.id */
|
| - String id;
|
| -
|
| - /** @domName HTMLElement.innerHTML */
|
| - String innerHTML;
|
| -
|
| - /** @domName HTMLElement.isContentEditable */
|
| - bool get isContentEditable;
|
| -
|
| - /** @domName HTMLElement.lang */
|
| - String lang;
|
| -
|
| - /** @domName HTMLElement.outerHTML */
|
| - String get outerHTML;
|
| -
|
| - /** @domName HTMLElement.spellcheck */
|
| - bool spellcheck;
|
| -
|
| - /** @domName HTMLElement.tabIndex */
|
| - int tabIndex;
|
| -
|
| - /** @domName HTMLElement.title */
|
| - String title;
|
| -
|
| - /** @domName HTMLElement.translate */
|
| - bool translate;
|
| -
|
| - /** @domName HTMLElement.webkitdropzone */
|
| - String webkitdropzone;
|
| -
|
| - /** @domName HTMLElement.click */
|
| - void click();
|
| -
|
| - /** @domName HTMLElement.insertAdjacentElement */
|
| - Element insertAdjacentElement(String where, Element element);
|
| -
|
| - /** @domName HTMLElement.insertAdjacentHTML */
|
| - void insertAdjacentHTML(String where, String html);
|
| -
|
| - /** @domName HTMLElement.insertAdjacentText */
|
| - void insertAdjacentText(String where, String text);
|
| -
|
| }
|
|
|
| // Temporary dispatch hook to support WebComponents.
|
|
|