| 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 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 Loading... |
| 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 } |
| OLD | NEW |