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

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

Issue 9323028: Support 'Conditional' idl attribute. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem ent" { 2 class _HTMLElementJs extends _ElementJs implements HTMLElement native "*HTMLElem ent" {
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 _HTMLCollectionJs get children() native "return this.children;"; 8 _HTMLCollectionJs get children() native "return this.children;";
9 9
10 _DOMTokenListJs get classList() native "return this.classList;"; 10 _DOMTokenListJs get classList() native "return this.classList;";
(...skipping 25 matching lines...) Expand all
36 String get innerHTML() native "return this.innerHTML;"; 36 String get innerHTML() native "return this.innerHTML;";
37 37
38 void set innerHTML(String value) native "this.innerHTML = value;"; 38 void set innerHTML(String value) native "this.innerHTML = value;";
39 39
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;";
47
48 void set itemId(String value) native "this.itemId = value;";
49
50 _DOMSettableTokenListJs get itemProp() native "return this.itemProp;";
51
52 _DOMSettableTokenListJs 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 _DOMSettableTokenListJs 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;"; 46 String get lang() native "return this.lang;";
65 47
66 void set lang(String value) native "this.lang = value;"; 48 void set lang(String value) native "this.lang = value;";
67 49
68 String get outerHTML() native "return this.outerHTML;"; 50 String get outerHTML() native "return this.outerHTML;";
69 51
70 void set outerHTML(String value) native "this.outerHTML = value;"; 52 void set outerHTML(String value) native "this.outerHTML = value;";
71 53
72 String get outerText() native "return this.outerText;"; 54 String get outerText() native "return this.outerText;";
73 55
(...skipping 14 matching lines...) Expand all
88 String get webkitdropzone() native "return this.webkitdropzone;"; 70 String get webkitdropzone() native "return this.webkitdropzone;";
89 71
90 void set webkitdropzone(String value) native "this.webkitdropzone = value;"; 72 void set webkitdropzone(String value) native "this.webkitdropzone = value;";
91 73
92 _ElementJs insertAdjacentElement(String where, _ElementJs element) native; 74 _ElementJs insertAdjacentElement(String where, _ElementJs element) native;
93 75
94 void insertAdjacentHTML(String where, String html) native; 76 void insertAdjacentHTML(String where, String html) native;
95 77
96 void insertAdjacentText(String where, String text) native; 78 void insertAdjacentText(String where, String text) native;
97 } 79 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698