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

Unified Diff: client/html/generated/html/frog/TextAreaElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/html/frog/TextAreaElement.dart
diff --git a/client/html/generated/html/frog/TextAreaElement.dart b/client/html/generated/html/frog/TextAreaElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c4a7785d61d229f58bad4feade755c7fce8fd2b1
--- /dev/null
+++ b/client/html/generated/html/frog/TextAreaElement.dart
@@ -0,0 +1,55 @@
+
+class _TextAreaElementImpl extends _ElementImpl implements TextAreaElement native "*HTMLTextAreaElement" {
+
+ bool autofocus;
+
+ int cols;
+
+ String defaultValue;
+
+ bool disabled;
+
+ final _FormElementImpl form;
+
+ final _NodeListImpl 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 _ValidityStateImpl validity;
+
+ String value;
+
+ final bool willValidate;
+
+ String wrap;
+
+ bool checkValidity() native;
+
+ void select() native;
+
+ void setCustomValidity(String error) native;
+
+ void setSelectionRange(int start, int end, [String direction = null]) native;
+}

Powered by Google App Engine
This is Rietveld 408576698