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

Side by Side Diff: client/html/generated/html/frog/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
2 class _TextAreaElementImpl extends _ElementImpl implements TextAreaElement nativ e "*HTMLTextAreaElement" {
3
4 bool autofocus;
5
6 int cols;
7
8 String defaultValue;
9
10 bool disabled;
11
12 final _FormElementImpl form;
13
14 final _NodeListImpl labels;
15
16 int maxLength;
17
18 String name;
19
20 String placeholder;
21
22 bool readOnly;
23
24 bool required;
25
26 int rows;
27
28 String selectionDirection;
29
30 int selectionEnd;
31
32 int selectionStart;
33
34 final int textLength;
35
36 final String type;
37
38 final String validationMessage;
39
40 final _ValidityStateImpl validity;
41
42 String value;
43
44 final bool willValidate;
45
46 String wrap;
47
48 bool checkValidity() native;
49
50 void select() native;
51
52 void setCustomValidity(String error) native;
53
54 void setSelectionRange(int start, int end, [String direction = null]) native;
55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698