Index: client/html/generated/html/interface/TextAreaElement.dart |
diff --git a/client/html/generated/html/interface/TextAreaElement.dart b/client/html/generated/html/interface/TextAreaElement.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e3c9c27723e7948ee10860b715caa1d560c3ab72 |
--- /dev/null |
+++ b/client/html/generated/html/interface/TextAreaElement.dart |
@@ -0,0 +1,60 @@ |
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+// WARNING: Do not edit - generated code. |
+ |
+interface TextAreaElement extends Element { |
+ |
+ bool autofocus; |
+ |
+ int cols; |
+ |
+ String defaultValue; |
+ |
+ bool disabled; |
+ |
+ final FormElement form; |
+ |
+ final NodeList labels; |
+ |
+ int maxLength; |
+ |
+ String name; |
+ |
+ String placeholder; |
+ |
+ bool readOnly; |
+ |
+ bool required; |
+ |
+ int rows; |
+ |
+ String selectionDirection; |
+ |
+ int selectionEnd; |
+ |
+ int selectionStart; |
+ |
+ final int textLength; |
+ |
+ final String type; |
+ |
+ final String validationMessage; |
+ |
+ final ValidityState validity; |
+ |
+ String value; |
+ |
+ final bool willValidate; |
+ |
+ String wrap; |
+ |
+ bool checkValidity(); |
+ |
+ void select(); |
+ |
+ void setCustomValidity(String error); |
+ |
+ void setSelectionRange(int start, int end, [String direction]); |
+} |