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

Side by Side Diff: client/dom/generated/src/interface/HTMLTextAreaElement.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 interface HTMLTextAreaElement extends HTMLElement { 7 interface HTMLTextAreaElement extends HTMLElement {
8 8
9 String get accessKey();
10
11 void set accessKey(String value);
12
9 bool get autofocus(); 13 bool get autofocus();
10 14
11 void set autofocus(bool value); 15 void set autofocus(bool value);
12 16
13 int get cols(); 17 int get cols();
14 18
15 void set cols(int value); 19 void set cols(int value);
16 20
17 String get defaultValue(); 21 String get defaultValue();
18 22
19 void set defaultValue(String value); 23 void set defaultValue(String value);
20 24
21 String get dirName();
22
23 void set dirName(String value);
24
25 bool get disabled(); 25 bool get disabled();
26 26
27 void set disabled(bool value); 27 void set disabled(bool value);
28 28
29 HTMLFormElement get form(); 29 HTMLFormElement get form();
30 30
31 NodeList get labels(); 31 NodeList get labels();
32 32
33 int get maxLength(); 33 int get maxLength();
34 34
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 void set wrap(String value); 85 void set wrap(String value);
86 86
87 bool checkValidity(); 87 bool checkValidity();
88 88
89 void select(); 89 void select();
90 90
91 void setCustomValidity(String error); 91 void setCustomValidity(String error);
92 92
93 void setSelectionRange(int start, int end, [String direction]); 93 void setSelectionRange(int start, int end, [String direction]);
94 } 94 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/HTMLStyleElement.dart ('k') | client/dom/generated/src/interface/HTMLTrackElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698