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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLTextAreaElementWrappingImplementation.dart

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 _HTMLTextAreaElementWrappingImplementation extends _HTMLElementWrappingImp lementation implements HTMLTextAreaElement { 7 class _HTMLTextAreaElementWrappingImplementation extends _HTMLElementWrappingImp lementation implements HTMLTextAreaElement {
8 _HTMLTextAreaElementWrappingImplementation() : super() {} 8 _HTMLTextAreaElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLTextAreaElementWrappingImplementation() native { 10 static create__HTMLTextAreaElementWrappingImplementation() native {
11 return new _HTMLTextAreaElementWrappingImplementation(); 11 return new _HTMLTextAreaElementWrappingImplementation();
12 } 12 }
13 13
14 String get accessKey() { return _get_accessKey(this); }
15 static String _get_accessKey(var _this) native;
16
17 void set accessKey(String value) { _set_accessKey(this, value); }
18 static void _set_accessKey(var _this, String value) native;
19
14 bool get autofocus() { return _get_autofocus(this); } 20 bool get autofocus() { return _get_autofocus(this); }
15 static bool _get_autofocus(var _this) native; 21 static bool _get_autofocus(var _this) native;
16 22
17 void set autofocus(bool value) { _set_autofocus(this, value); } 23 void set autofocus(bool value) { _set_autofocus(this, value); }
18 static void _set_autofocus(var _this, bool value) native; 24 static void _set_autofocus(var _this, bool value) native;
19 25
20 int get cols() { return _get_cols(this); } 26 int get cols() { return _get_cols(this); }
21 static int _get_cols(var _this) native; 27 static int _get_cols(var _this) native;
22 28
23 void set cols(int value) { _set_cols(this, value); } 29 void set cols(int value) { _set_cols(this, value); }
24 static void _set_cols(var _this, int value) native; 30 static void _set_cols(var _this, int value) native;
25 31
26 String get defaultValue() { return _get_defaultValue(this); } 32 String get defaultValue() { return _get_defaultValue(this); }
27 static String _get_defaultValue(var _this) native; 33 static String _get_defaultValue(var _this) native;
28 34
29 void set defaultValue(String value) { _set_defaultValue(this, value); } 35 void set defaultValue(String value) { _set_defaultValue(this, value); }
30 static void _set_defaultValue(var _this, String value) native; 36 static void _set_defaultValue(var _this, String value) native;
31 37
32 String get dirName() { return _get_dirName(this); }
33 static String _get_dirName(var _this) native;
34
35 void set dirName(String value) { _set_dirName(this, value); }
36 static void _set_dirName(var _this, String value) native;
37
38 bool get disabled() { return _get_disabled(this); } 38 bool get disabled() { return _get_disabled(this); }
39 static bool _get_disabled(var _this) native; 39 static bool _get_disabled(var _this) native;
40 40
41 void set disabled(bool value) { _set_disabled(this, value); } 41 void set disabled(bool value) { _set_disabled(this, value); }
42 static void _set_disabled(var _this, bool value) native; 42 static void _set_disabled(var _this, bool value) native;
43 43
44 HTMLFormElement get form() { return _get_form(this); } 44 HTMLFormElement get form() { return _get_form(this); }
45 static HTMLFormElement _get_form(var _this) native; 45 static HTMLFormElement _get_form(var _this) native;
46 46
47 NodeList get labels() { return _get_labels(this); } 47 NodeList get labels() { return _get_labels(this); }
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 } else { 152 } else {
153 _setSelectionRange_2(this, start, end, direction); 153 _setSelectionRange_2(this, start, end, direction);
154 return; 154 return;
155 } 155 }
156 } 156 }
157 static void _setSelectionRange(receiver, start, end) native; 157 static void _setSelectionRange(receiver, start, end) native;
158 static void _setSelectionRange_2(receiver, start, end, direction) native; 158 static void _setSelectionRange_2(receiver, start, end, direction) native;
159 159
160 String get typeName() { return "HTMLTextAreaElement"; } 160 String get typeName() { return "HTMLTextAreaElement"; }
161 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698