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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class HTMLElement extends Element native "*HTMLElement" { 2 class HTMLElementJS extends ElementJS implements HTMLElement native "*HTMLElemen t" {
3 3
4 String get accessKey() native "return this.accessKey;"; 4 String get accessKey() native "return this.accessKey;";
5 5
6 void set accessKey(String value) native "this.accessKey = value;"; 6 void set accessKey(String value) native "this.accessKey = value;";
7 7
8 HTMLCollection get children() native "return this.children;"; 8 HTMLCollectionJS get children() native "return this.children;";
9 9
10 DOMTokenList get classList() native "return this.classList;"; 10 DOMTokenListJS get classList() native "return this.classList;";
11 11
12 String get className() native "return this.className;"; 12 String get className() native "return this.className;";
13 13
14 void set className(String value) native "this.className = value;"; 14 void set className(String value) native "this.className = value;";
15 15
16 String get contentEditable() native "return this.contentEditable;"; 16 String get contentEditable() native "return this.contentEditable;";
17 17
18 void set contentEditable(String value) native "this.contentEditable = value;"; 18 void set contentEditable(String value) native "this.contentEditable = value;";
19 19
20 String get dir() native "return this.dir;"; 20 String get dir() native "return this.dir;";
(...skipping 19 matching lines...) Expand all
40 String get innerText() native "return this.innerText;"; 40 String get innerText() native "return this.innerText;";
41 41
42 void set innerText(String value) native "this.innerText = value;"; 42 void set innerText(String value) native "this.innerText = value;";
43 43
44 bool get isContentEditable() native "return this.isContentEditable;"; 44 bool get isContentEditable() native "return this.isContentEditable;";
45 45
46 String get itemId() native "return this.itemId;"; 46 String get itemId() native "return this.itemId;";
47 47
48 void set itemId(String value) native "this.itemId = value;"; 48 void set itemId(String value) native "this.itemId = value;";
49 49
50 DOMSettableTokenList get itemProp() native "return this.itemProp;"; 50 DOMSettableTokenListJS get itemProp() native "return this.itemProp;";
51 51
52 DOMSettableTokenList get itemRef() native "return this.itemRef;"; 52 DOMSettableTokenListJS get itemRef() native "return this.itemRef;";
53 53
54 bool get itemScope() native "return this.itemScope;"; 54 bool get itemScope() native "return this.itemScope;";
55 55
56 void set itemScope(bool value) native "this.itemScope = value;"; 56 void set itemScope(bool value) native "this.itemScope = value;";
57 57
58 DOMSettableTokenList get itemType() native "return this.itemType;"; 58 DOMSettableTokenListJS get itemType() native "return this.itemType;";
59 59
60 Object get itemValue() native "return this.itemValue;"; 60 Object get itemValue() native "return this.itemValue;";
61 61
62 void set itemValue(Object value) native "this.itemValue = value;"; 62 void set itemValue(Object value) native "this.itemValue = value;";
63 63
64 String get lang() native "return this.lang;"; 64 String get lang() native "return this.lang;";
65 65
66 void set lang(String value) native "this.lang = value;"; 66 void set lang(String value) native "this.lang = value;";
67 67
68 String get outerHTML() native "return this.outerHTML;"; 68 String get outerHTML() native "return this.outerHTML;";
(...skipping 13 matching lines...) Expand all
82 void set tabIndex(int value) native "this.tabIndex = value;"; 82 void set tabIndex(int value) native "this.tabIndex = value;";
83 83
84 String get title() native "return this.title;"; 84 String get title() native "return this.title;";
85 85
86 void set title(String value) native "this.title = value;"; 86 void set title(String value) native "this.title = value;";
87 87
88 String get webkitdropzone() native "return this.webkitdropzone;"; 88 String get webkitdropzone() native "return this.webkitdropzone;";
89 89
90 void set webkitdropzone(String value) native "this.webkitdropzone = value;"; 90 void set webkitdropzone(String value) native "this.webkitdropzone = value;";
91 91
92 Element insertAdjacentElement(String where, Element element) native; 92 ElementJS insertAdjacentElement(String where, ElementJS element) native;
93 93
94 void insertAdjacentHTML(String where, String html) native; 94 void insertAdjacentHTML(String where, String html) native;
95 95
96 void insertAdjacentText(String where, String text) native; 96 void insertAdjacentText(String where, String text) native;
97 } 97 }
OLDNEW
« 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