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

Side by Side Diff: client/html/generated/src/interface/TextAreaElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 interface TextAreaElement extends Element {
8
9 String get accessKey();
10
11 void set accessKey(String value);
12
13 bool get autofocus();
14
15 void set autofocus(bool value);
16
17 int get cols();
18
19 void set cols(int value);
20
21 String get defaultValue();
22
23 void set defaultValue(String value);
24
25 bool get disabled();
26
27 void set disabled(bool value);
28
29 FormElement get form();
30
31 ElementList get labels();
32
33 int get maxLength();
34
35 void set maxLength(int value);
36
37 String get name();
38
39 void set name(String value);
40
41 String get placeholder();
42
43 void set placeholder(String value);
44
45 bool get readOnly();
46
47 void set readOnly(bool value);
48
49 bool get required();
50
51 void set required(bool value);
52
53 int get rows();
54
55 void set rows(int value);
56
57 String get selectionDirection();
58
59 void set selectionDirection(String value);
60
61 int get selectionEnd();
62
63 void set selectionEnd(int value);
64
65 int get selectionStart();
66
67 void set selectionStart(int value);
68
69 int get textLength();
70
71 String get type();
72
73 String get validationMessage();
74
75 ValidityState get validity();
76
77 String get value();
78
79 void set value(String value);
80
81 bool get willValidate();
82
83 String get wrap();
84
85 void set wrap(String value);
86
87 bool checkValidity();
88
89 void select();
90
91 void setCustomValidity(String error);
92
93 void setSelectionRange(int start, int end, [String direction]);
94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698