| 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 bool get autofocus(); | 9 bool autofocus; |
| 10 | 10 |
| 11 void set autofocus(bool value); | 11 int cols; |
| 12 | 12 |
| 13 int get cols(); | 13 String defaultValue; |
| 14 | 14 |
| 15 void set cols(int value); | 15 String dirName; |
| 16 | 16 |
| 17 String get defaultValue(); | 17 bool disabled; |
| 18 | 18 |
| 19 void set defaultValue(String value); | 19 final HTMLFormElement form; |
| 20 | 20 |
| 21 String get dirName(); | 21 final NodeList labels; |
| 22 | 22 |
| 23 void set dirName(String value); | 23 int maxLength; |
| 24 | 24 |
| 25 bool get disabled(); | 25 String name; |
| 26 | 26 |
| 27 void set disabled(bool value); | 27 String placeholder; |
| 28 | 28 |
| 29 HTMLFormElement get form(); | 29 bool readOnly; |
| 30 | 30 |
| 31 NodeList get labels(); | 31 bool required; |
| 32 | 32 |
| 33 int get maxLength(); | 33 int rows; |
| 34 | 34 |
| 35 void set maxLength(int value); | 35 String selectionDirection; |
| 36 | 36 |
| 37 String get name(); | 37 int selectionEnd; |
| 38 | 38 |
| 39 void set name(String value); | 39 int selectionStart; |
| 40 | 40 |
| 41 String get placeholder(); | 41 final int textLength; |
| 42 | 42 |
| 43 void set placeholder(String value); | 43 final String type; |
| 44 | 44 |
| 45 bool get readOnly(); | 45 final String validationMessage; |
| 46 | 46 |
| 47 void set readOnly(bool value); | 47 final ValidityState validity; |
| 48 | 48 |
| 49 bool get required(); | 49 String value; |
| 50 | 50 |
| 51 void set required(bool value); | 51 final bool willValidate; |
| 52 | 52 |
| 53 int get rows(); | 53 String wrap; |
| 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 | 54 |
| 87 bool checkValidity(); | 55 bool checkValidity(); |
| 88 | 56 |
| 89 void select(); | 57 void select(); |
| 90 | 58 |
| 91 void setCustomValidity(String error); | 59 void setCustomValidity(String error); |
| 92 | 60 |
| 93 void setSelectionRange(int start, int end, [String direction]); | 61 void setSelectionRange(int start, int end, [String direction]); |
| 94 } | 62 } |
| OLD | NEW |