| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 148 |
| 149 void set multiple(bool value) { _set_multiple(this, value); } | 149 void set multiple(bool value) { _set_multiple(this, value); } |
| 150 static void _set_multiple(var _this, bool value) native; | 150 static void _set_multiple(var _this, bool value) native; |
| 151 | 151 |
| 152 String get name() { return _get_name(this); } | 152 String get name() { return _get_name(this); } |
| 153 static String _get_name(var _this) native; | 153 static String _get_name(var _this) native; |
| 154 | 154 |
| 155 void set name(String value) { _set_name(this, value); } | 155 void set name(String value) { _set_name(this, value); } |
| 156 static void _set_name(var _this, String value) native; | 156 static void _set_name(var _this, String value) native; |
| 157 | 157 |
| 158 EventListener get onwebkitspeechchange() { return _get_onwebkitspeechchange(th
is); } | |
| 159 static EventListener _get_onwebkitspeechchange(var _this) native; | |
| 160 | |
| 161 void set onwebkitspeechchange(EventListener value) { _set_onwebkitspeechchange
(this, value); } | |
| 162 static void _set_onwebkitspeechchange(var _this, EventListener value) native; | |
| 163 | |
| 164 String get pattern() { return _get_pattern(this); } | 158 String get pattern() { return _get_pattern(this); } |
| 165 static String _get_pattern(var _this) native; | 159 static String _get_pattern(var _this) native; |
| 166 | 160 |
| 167 void set pattern(String value) { _set_pattern(this, value); } | 161 void set pattern(String value) { _set_pattern(this, value); } |
| 168 static void _set_pattern(var _this, String value) native; | 162 static void _set_pattern(var _this, String value) native; |
| 169 | 163 |
| 170 String get placeholder() { return _get_placeholder(this); } | 164 String get placeholder() { return _get_placeholder(this); } |
| 171 static String _get_placeholder(var _this) native; | 165 static String _get_placeholder(var _this) native; |
| 172 | 166 |
| 173 void set placeholder(String value) { _set_placeholder(this, value); } | 167 void set placeholder(String value) { _set_placeholder(this, value); } |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 } else { | 329 } else { |
| 336 _stepUp_2(this, n); | 330 _stepUp_2(this, n); |
| 337 return; | 331 return; |
| 338 } | 332 } |
| 339 } | 333 } |
| 340 static void _stepUp(receiver) native; | 334 static void _stepUp(receiver) native; |
| 341 static void _stepUp_2(receiver, n) native; | 335 static void _stepUp_2(receiver, n) native; |
| 342 | 336 |
| 343 String get typeName() { return "HTMLInputElement"; } | 337 String get typeName() { return "HTMLInputElement"; } |
| 344 } | 338 } |
| OLD | NEW |