| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, 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 /// @domName HTMLTextAreaElement |
| 8 interface TextAreaElement extends Element default _Elements { |
| 9 |
| 10 TextAreaElement(); |
| 11 |
| 12 /** @domName HTMLTextAreaElement.autofocus */ |
| 13 bool autofocus; |
| 14 |
| 15 /** @domName HTMLTextAreaElement.cols */ |
| 16 int cols; |
| 17 |
| 18 /** @domName HTMLTextAreaElement.defaultValue */ |
| 19 String defaultValue; |
| 20 |
| 21 /** @domName HTMLTextAreaElement.disabled */ |
| 22 bool disabled; |
| 23 |
| 24 /** @domName HTMLTextAreaElement.form */ |
| 25 final FormElement form; |
| 26 |
| 27 /** @domName HTMLTextAreaElement.labels */ |
| 28 final NodeList labels; |
| 29 |
| 30 /** @domName HTMLTextAreaElement.maxLength */ |
| 31 int maxLength; |
| 32 |
| 33 /** @domName HTMLTextAreaElement.name */ |
| 34 String name; |
| 35 |
| 36 /** @domName HTMLTextAreaElement.placeholder */ |
| 37 String placeholder; |
| 38 |
| 39 /** @domName HTMLTextAreaElement.readOnly */ |
| 40 bool readOnly; |
| 41 |
| 42 /** @domName HTMLTextAreaElement.required */ |
| 43 bool required; |
| 44 |
| 45 /** @domName HTMLTextAreaElement.rows */ |
| 46 int rows; |
| 47 |
| 48 /** @domName HTMLTextAreaElement.selectionDirection */ |
| 49 String selectionDirection; |
| 50 |
| 51 /** @domName HTMLTextAreaElement.selectionEnd */ |
| 52 int selectionEnd; |
| 53 |
| 54 /** @domName HTMLTextAreaElement.selectionStart */ |
| 55 int selectionStart; |
| 56 |
| 57 /** @domName HTMLTextAreaElement.textLength */ |
| 58 final int textLength; |
| 59 |
| 60 /** @domName HTMLTextAreaElement.type */ |
| 61 final String type; |
| 62 |
| 63 /** @domName HTMLTextAreaElement.validationMessage */ |
| 64 final String validationMessage; |
| 65 |
| 66 /** @domName HTMLTextAreaElement.validity */ |
| 67 final ValidityState validity; |
| 68 |
| 69 /** @domName HTMLTextAreaElement.value */ |
| 70 String value; |
| 71 |
| 72 /** @domName HTMLTextAreaElement.willValidate */ |
| 73 final bool willValidate; |
| 74 |
| 75 /** @domName HTMLTextAreaElement.wrap */ |
| 76 String wrap; |
| 77 |
| 78 /** @domName HTMLTextAreaElement.checkValidity */ |
| 79 bool checkValidity(); |
| 80 |
| 81 /** @domName HTMLTextAreaElement.select */ |
| 82 void select(); |
| 83 |
| 84 /** @domName HTMLTextAreaElement.setCustomValidity */ |
| 85 void setCustomValidity(String error); |
| 86 |
| 87 /** @domName HTMLTextAreaElement.setSelectionRange */ |
| 88 void setSelectionRange(int start, int end, [String direction]); |
| 89 } |
| OLD | NEW |