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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLElementWrappingImplementation.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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _HTMLElementWrappingImplementation extends _ElementWrappingImplementation implements HTMLElement { 7 class _HTMLElementWrappingImplementation extends _ElementWrappingImplementation implements HTMLElement {
8 _HTMLElementWrappingImplementation() : super() {} 8 _HTMLElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLElementWrappingImplementation() native { 10 static create__HTMLElementWrappingImplementation() native {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 67
68 String get innerText() { return _get_innerText(this); } 68 String get innerText() { return _get_innerText(this); }
69 static String _get_innerText(var _this) native; 69 static String _get_innerText(var _this) native;
70 70
71 void set innerText(String value) { _set_innerText(this, value); } 71 void set innerText(String value) { _set_innerText(this, value); }
72 static void _set_innerText(var _this, String value) native; 72 static void _set_innerText(var _this, String value) native;
73 73
74 bool get isContentEditable() { return _get_isContentEditable(this); } 74 bool get isContentEditable() { return _get_isContentEditable(this); }
75 static bool _get_isContentEditable(var _this) native; 75 static bool _get_isContentEditable(var _this) native;
76 76
77 String get itemId() { return _get_itemId(this); }
78 static String _get_itemId(var _this) native;
79
80 void set itemId(String value) { _set_itemId(this, value); }
81 static void _set_itemId(var _this, String value) native;
82
83 DOMSettableTokenList get itemProp() { return _get_itemProp(this); }
84 static DOMSettableTokenList _get_itemProp(var _this) native;
85
86 DOMSettableTokenList get itemRef() { return _get_itemRef(this); }
87 static DOMSettableTokenList _get_itemRef(var _this) native;
88
89 bool get itemScope() { return _get_itemScope(this); }
90 static bool _get_itemScope(var _this) native;
91
92 void set itemScope(bool value) { _set_itemScope(this, value); }
93 static void _set_itemScope(var _this, bool value) native;
94
95 DOMSettableTokenList get itemType() { return _get_itemType(this); }
96 static DOMSettableTokenList _get_itemType(var _this) native;
97
98 Object get itemValue() { return _get_itemValue(this); }
99 static Object _get_itemValue(var _this) native;
100
101 void set itemValue(Object value) { _set_itemValue(this, value); }
102 static void _set_itemValue(var _this, Object value) native;
103
104 String get lang() { return _get_lang(this); } 77 String get lang() { return _get_lang(this); }
105 static String _get_lang(var _this) native; 78 static String _get_lang(var _this) native;
106 79
107 void set lang(String value) { _set_lang(this, value); } 80 void set lang(String value) { _set_lang(this, value); }
108 static void _set_lang(var _this, String value) native; 81 static void _set_lang(var _this, String value) native;
109 82
110 String get outerHTML() { return _get_outerHTML(this); } 83 String get outerHTML() { return _get_outerHTML(this); }
111 static String _get_outerHTML(var _this) native; 84 static String _get_outerHTML(var _this) native;
112 85
113 void set outerHTML(String value) { _set_outerHTML(this, value); } 86 void set outerHTML(String value) { _set_outerHTML(this, value); }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 static void _insertAdjacentHTML(receiver, where, html) native; 128 static void _insertAdjacentHTML(receiver, where, html) native;
156 129
157 void insertAdjacentText(String where, String text) { 130 void insertAdjacentText(String where, String text) {
158 _insertAdjacentText(this, where, text); 131 _insertAdjacentText(this, where, text);
159 return; 132 return;
160 } 133 }
161 static void _insertAdjacentText(receiver, where, text) native; 134 static void _insertAdjacentText(receiver, where, text) native;
162 135
163 String get typeName() { return "HTMLElement"; } 136 String get typeName() { return "HTMLElement"; }
164 } 137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698