Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(289)

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 11363130: Cleaning up dart:html generation after interface/implementation merge. Removing most of the interfa… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Incorporating review feedback, cleaning up comments Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | sdk/lib/html/scripts/htmldartgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | sdk/lib/html/scripts/htmldartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698