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

Unified Diff: client/dom/generated/src/frog/HTMLElement.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/HTMLElement.dart
diff --git a/client/dom/generated/src/frog/HTMLElement.dart b/client/dom/generated/src/frog/HTMLElement.dart
index 8d817292f7aec08c83f37bae4f4ed1082900e335..c32a187be2738639e994096bc3a7d182e8c31e53 100644
--- a/client/dom/generated/src/frog/HTMLElement.dart
+++ b/client/dom/generated/src/frog/HTMLElement.dart
@@ -1,13 +1,13 @@
-class HTMLElement extends Element native "*HTMLElement" {
+class HTMLElementJS extends ElementJS implements HTMLElement native "*HTMLElement" {
String get accessKey() native "return this.accessKey;";
void set accessKey(String value) native "this.accessKey = value;";
- HTMLCollection get children() native "return this.children;";
+ HTMLCollectionJS get children() native "return this.children;";
- DOMTokenList get classList() native "return this.classList;";
+ DOMTokenListJS get classList() native "return this.classList;";
String get className() native "return this.className;";
@@ -47,15 +47,15 @@ class HTMLElement extends Element native "*HTMLElement" {
void set itemId(String value) native "this.itemId = value;";
- DOMSettableTokenList get itemProp() native "return this.itemProp;";
+ DOMSettableTokenListJS get itemProp() native "return this.itemProp;";
- DOMSettableTokenList get itemRef() native "return this.itemRef;";
+ DOMSettableTokenListJS get itemRef() native "return this.itemRef;";
bool get itemScope() native "return this.itemScope;";
void set itemScope(bool value) native "this.itemScope = value;";
- DOMSettableTokenList get itemType() native "return this.itemType;";
+ DOMSettableTokenListJS get itemType() native "return this.itemType;";
Object get itemValue() native "return this.itemValue;";
@@ -89,7 +89,7 @@ class HTMLElement extends Element native "*HTMLElement" {
void set webkitdropzone(String value) native "this.webkitdropzone = value;";
- Element insertAdjacentElement(String where, Element element) native;
+ ElementJS insertAdjacentElement(String where, ElementJS element) native;
void insertAdjacentHTML(String where, String html) native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLDocument.dart ('k') | client/dom/generated/src/frog/HTMLEmbedElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698