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

Unified Diff: client/dom/generated/src/frog/HTMLTextAreaElement.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 8 years, 11 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/dom/generated/src/frog/HTMLTextAreaElement.dart
diff --git a/client/dom/generated/src/frog/HTMLTextAreaElement.dart b/client/dom/generated/src/frog/HTMLTextAreaElement.dart
index 64be10110d041894d73043d40b98a3cdd82406d7..fcd4c6af425a114b8ca6ae0e6eeb766f18897054 100644
--- a/client/dom/generated/src/frog/HTMLTextAreaElement.dart
+++ b/client/dom/generated/src/frog/HTMLTextAreaElement.dart
@@ -1,51 +1,83 @@
class HTMLTextAreaElement extends HTMLElement native "*HTMLTextAreaElement" {
- bool autofocus;
+ bool get autofocus() native "return this.autofocus;";
- int cols;
+ void set autofocus(bool value) native "this.autofocus = value;";
- String defaultValue;
+ int get cols() native "return this.cols;";
- String dirName;
+ void set cols(int value) native "this.cols = value;";
- bool disabled;
+ String get defaultValue() native "return this.defaultValue;";
- HTMLFormElement form;
+ void set defaultValue(String value) native "this.defaultValue = value;";
- NodeList labels;
+ String get dirName() native "return this.dirName;";
- int maxLength;
+ void set dirName(String value) native "this.dirName = value;";
- String name;
+ bool get disabled() native "return this.disabled;";
- String placeholder;
+ void set disabled(bool value) native "this.disabled = value;";
- bool readOnly;
+ HTMLFormElement get form() native "return this.form;";
- bool required;
+ NodeList get labels() native "return this.labels;";
- int rows;
+ int get maxLength() native "return this.maxLength;";
- String selectionDirection;
+ void set maxLength(int value) native "this.maxLength = value;";
- int selectionEnd;
+ String get name() native "return this.name;";
- int selectionStart;
+ void set name(String value) native "this.name = value;";
- int textLength;
+ String get placeholder() native "return this.placeholder;";
- String type;
+ void set placeholder(String value) native "this.placeholder = value;";
- String validationMessage;
+ bool get readOnly() native "return this.readOnly;";
- ValidityState validity;
+ void set readOnly(bool value) native "this.readOnly = value;";
- String value;
+ bool get required() native "return this.required;";
- bool willValidate;
+ void set required(bool value) native "this.required = value;";
- String wrap;
+ int get rows() native "return this.rows;";
+
+ void set rows(int value) native "this.rows = value;";
+
+ String get selectionDirection() native "return this.selectionDirection;";
+
+ void set selectionDirection(String value) native "this.selectionDirection = value;";
+
+ int get selectionEnd() native "return this.selectionEnd;";
+
+ void set selectionEnd(int value) native "this.selectionEnd = value;";
+
+ int get selectionStart() native "return this.selectionStart;";
+
+ void set selectionStart(int value) native "this.selectionStart = value;";
+
+ int get textLength() native "return this.textLength;";
+
+ String get type() native "return this.type;";
+
+ String get validationMessage() native "return this.validationMessage;";
+
+ ValidityState get validity() native "return this.validity;";
+
+ String get value() native "return this.value;";
+
+ void set value(String value) native "this.value = value;";
+
+ bool get willValidate() native "return this.willValidate;";
+
+ String get wrap() native "return this.wrap;";
+
+ void set wrap(String value) native "this.wrap = value;";
bool checkValidity() native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableSectionElement.dart ('k') | client/dom/generated/src/frog/HTMLTitleElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698