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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLInputElementWrappingImplementation.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 _HTMLInputElementWrappingImplementation extends _HTMLElementWrappingImplem entation implements HTMLInputElement { 7 class _HTMLInputElementWrappingImplementation extends _HTMLElementWrappingImplem entation implements HTMLInputElement {
8 _HTMLInputElementWrappingImplementation() : super() {} 8 _HTMLInputElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLInputElementWrappingImplementation() native { 10 static create__HTMLInputElementWrappingImplementation() native {
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 115
116 bool get indeterminate() { return _get_indeterminate(this); } 116 bool get indeterminate() { return _get_indeterminate(this); }
117 static bool _get_indeterminate(var _this) native; 117 static bool _get_indeterminate(var _this) native;
118 118
119 void set indeterminate(bool value) { _set_indeterminate(this, value); } 119 void set indeterminate(bool value) { _set_indeterminate(this, value); }
120 static void _set_indeterminate(var _this, bool value) native; 120 static void _set_indeterminate(var _this, bool value) native;
121 121
122 NodeList get labels() { return _get_labels(this); } 122 NodeList get labels() { return _get_labels(this); }
123 static NodeList _get_labels(var _this) native; 123 static NodeList _get_labels(var _this) native;
124 124
125 HTMLElement get list() { return _get_list(this); }
126 static HTMLElement _get_list(var _this) native;
127
128 String get max() { return _get_max(this); } 125 String get max() { return _get_max(this); }
129 static String _get_max(var _this) native; 126 static String _get_max(var _this) native;
130 127
131 void set max(String value) { _set_max(this, value); } 128 void set max(String value) { _set_max(this, value); }
132 static void _set_max(var _this, String value) native; 129 static void _set_max(var _this, String value) native;
133 130
134 int get maxLength() { return _get_maxLength(this); } 131 int get maxLength() { return _get_maxLength(this); }
135 static int _get_maxLength(var _this) native; 132 static int _get_maxLength(var _this) native;
136 133
137 void set maxLength(int value) { _set_maxLength(this, value); } 134 void set maxLength(int value) { _set_maxLength(this, value); }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 169
173 void set readOnly(bool value) { _set_readOnly(this, value); } 170 void set readOnly(bool value) { _set_readOnly(this, value); }
174 static void _set_readOnly(var _this, bool value) native; 171 static void _set_readOnly(var _this, bool value) native;
175 172
176 bool get required() { return _get_required(this); } 173 bool get required() { return _get_required(this); }
177 static bool _get_required(var _this) native; 174 static bool _get_required(var _this) native;
178 175
179 void set required(bool value) { _set_required(this, value); } 176 void set required(bool value) { _set_required(this, value); }
180 static void _set_required(var _this, bool value) native; 177 static void _set_required(var _this, bool value) native;
181 178
182 HTMLOptionElement get selectedOption() { return _get_selectedOption(this); }
183 static HTMLOptionElement _get_selectedOption(var _this) native;
184
185 String get selectionDirection() { return _get_selectionDirection(this); } 179 String get selectionDirection() { return _get_selectionDirection(this); }
186 static String _get_selectionDirection(var _this) native; 180 static String _get_selectionDirection(var _this) native;
187 181
188 void set selectionDirection(String value) { _set_selectionDirection(this, valu e); } 182 void set selectionDirection(String value) { _set_selectionDirection(this, valu e); }
189 static void _set_selectionDirection(var _this, String value) native; 183 static void _set_selectionDirection(var _this, String value) native;
190 184
191 int get selectionEnd() { return _get_selectionEnd(this); } 185 int get selectionEnd() { return _get_selectionEnd(this); }
192 static int _get_selectionEnd(var _this) native; 186 static int _get_selectionEnd(var _this) native;
193 187
194 void set selectionEnd(int value) { _set_selectionEnd(this, value); } 188 void set selectionEnd(int value) { _set_selectionEnd(this, value); }
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 } else { 323 } else {
330 _stepUp_2(this, n); 324 _stepUp_2(this, n);
331 return; 325 return;
332 } 326 }
333 } 327 }
334 static void _stepUp(receiver) native; 328 static void _stepUp(receiver) native;
335 static void _stepUp_2(receiver, n) native; 329 static void _stepUp_2(receiver, n) native;
336 330
337 String get typeName() { return "HTMLInputElement"; } 331 String get typeName() { return "HTMLInputElement"; }
338 } 332 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698