OLD | NEW |
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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 static void _set_webkitdirectory(var _this, bool value) native; | 267 static void _set_webkitdirectory(var _this, bool value) native; |
268 | 268 |
269 bool get willValidate() { return _get_willValidate(this); } | 269 bool get willValidate() { return _get_willValidate(this); } |
270 static bool _get_willValidate(var _this) native; | 270 static bool _get_willValidate(var _this) native; |
271 | 271 |
272 bool checkValidity() { | 272 bool checkValidity() { |
273 return _checkValidity(this); | 273 return _checkValidity(this); |
274 } | 274 } |
275 static bool _checkValidity(receiver) native; | 275 static bool _checkValidity(receiver) native; |
276 | 276 |
277 void click() { | |
278 _click(this); | |
279 return; | |
280 } | |
281 static void _click(receiver) native; | |
282 | |
283 void select() { | 277 void select() { |
284 _select(this); | 278 _select(this); |
285 return; | 279 return; |
286 } | 280 } |
287 static void _select(receiver) native; | 281 static void _select(receiver) native; |
288 | 282 |
289 void setCustomValidity(String error) { | 283 void setCustomValidity(String error) { |
290 _setCustomValidity(this, error); | 284 _setCustomValidity(this, error); |
291 return; | 285 return; |
292 } | 286 } |
(...skipping 30 matching lines...) Expand all Loading... |
323 } else { | 317 } else { |
324 _stepUp_2(this, n); | 318 _stepUp_2(this, n); |
325 return; | 319 return; |
326 } | 320 } |
327 } | 321 } |
328 static void _stepUp(receiver) native; | 322 static void _stepUp(receiver) native; |
329 static void _stepUp_2(receiver, n) native; | 323 static void _stepUp_2(receiver, n) native; |
330 | 324 |
331 String get typeName() { return "HTMLInputElement"; } | 325 String get typeName() { return "HTMLInputElement"; } |
332 } | 326 } |
OLD | NEW |