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

Side by Side Diff: client/dom/generated/src/frog/HTMLElement.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 HTMLElement extends Element native "*HTMLElement" {
3 3
4 String accessKey; 4 String get accessKey() native "return this.accessKey;";
5 5
6 HTMLCollection children; 6 void set accessKey(String value) native "this.accessKey = value;";
7 7
8 DOMTokenList classList; 8 HTMLCollection get children() native "return this.children;";
9 9
10 String className; 10 DOMTokenList get classList() native "return this.classList;";
11 11
12 String contentEditable; 12 String get className() native "return this.className;";
13 13
14 String dir; 14 void set className(String value) native "this.className = value;";
15 15
16 bool draggable; 16 String get contentEditable() native "return this.contentEditable;";
17 17
18 bool hidden; 18 void set contentEditable(String value) native "this.contentEditable = value;";
19 19
20 String id; 20 String get dir() native "return this.dir;";
21 21
22 String innerHTML; 22 void set dir(String value) native "this.dir = value;";
23 23
24 String innerText; 24 bool get draggable() native "return this.draggable;";
25 25
26 bool isContentEditable; 26 void set draggable(bool value) native "this.draggable = value;";
27 27
28 String itemId; 28 bool get hidden() native "return this.hidden;";
29 29
30 DOMSettableTokenList itemProp; 30 void set hidden(bool value) native "this.hidden = value;";
31 31
32 DOMSettableTokenList itemRef; 32 String get id() native "return this.id;";
33 33
34 bool itemScope; 34 void set id(String value) native "this.id = value;";
35 35
36 DOMSettableTokenList itemType; 36 String get innerHTML() native "return this.innerHTML;";
37 37
38 Object itemValue; 38 void set innerHTML(String value) native "this.innerHTML = value;";
39 39
40 String lang; 40 String get innerText() native "return this.innerText;";
41 41
42 String outerHTML; 42 void set innerText(String value) native "this.innerText = value;";
43 43
44 String outerText; 44 bool get isContentEditable() native "return this.isContentEditable;";
45 45
46 bool spellcheck; 46 String get itemId() native "return this.itemId;";
47 47
48 int tabIndex; 48 void set itemId(String value) native "this.itemId = value;";
49 49
50 String title; 50 DOMSettableTokenList get itemProp() native "return this.itemProp;";
51 51
52 String webkitdropzone; 52 DOMSettableTokenList get itemRef() native "return this.itemRef;";
53
54 bool get itemScope() native "return this.itemScope;";
55
56 void set itemScope(bool value) native "this.itemScope = value;";
57
58 DOMSettableTokenList get itemType() native "return this.itemType;";
59
60 Object get itemValue() native "return this.itemValue;";
61
62 void set itemValue(Object value) native "this.itemValue = value;";
63
64 String get lang() native "return this.lang;";
65
66 void set lang(String value) native "this.lang = value;";
67
68 String get outerHTML() native "return this.outerHTML;";
69
70 void set outerHTML(String value) native "this.outerHTML = value;";
71
72 String get outerText() native "return this.outerText;";
73
74 void set outerText(String value) native "this.outerText = value;";
75
76 bool get spellcheck() native "return this.spellcheck;";
77
78 void set spellcheck(bool value) native "this.spellcheck = value;";
79
80 int get tabIndex() native "return this.tabIndex;";
81
82 void set tabIndex(int value) native "this.tabIndex = value;";
83
84 String get title() native "return this.title;";
85
86 void set title(String value) native "this.title = value;";
87
88 String get webkitdropzone() native "return this.webkitdropzone;";
89
90 void set webkitdropzone(String value) native "this.webkitdropzone = value;";
53 91
54 Element insertAdjacentElement(String where, Element element) native; 92 Element insertAdjacentElement(String where, Element element) native;
55 93
56 void insertAdjacentHTML(String where, String html) native; 94 void insertAdjacentHTML(String where, String html) native;
57 95
58 void insertAdjacentText(String where, String text) native; 96 void insertAdjacentText(String where, String text) native;
59 } 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