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

Unified Diff: client/dom/generated/src/frog/HTMLButtonElement.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/HTMLButtonElement.dart
diff --git a/client/dom/generated/src/frog/HTMLButtonElement.dart b/client/dom/generated/src/frog/HTMLButtonElement.dart
index 5168b49c4ae2e27647638afbea4b122e6446cb7a..d9db9cc5c834cc996c88d25fecd186134bb5a9a4 100644
--- a/client/dom/generated/src/frog/HTMLButtonElement.dart
+++ b/client/dom/generated/src/frog/HTMLButtonElement.dart
@@ -1,35 +1,53 @@
class HTMLButtonElement extends HTMLElement native "*HTMLButtonElement" {
- bool autofocus;
+ bool get autofocus() native "return this.autofocus;";
- bool disabled;
+ void set autofocus(bool value) native "this.autofocus = value;";
- HTMLFormElement form;
+ bool get disabled() native "return this.disabled;";
- String formAction;
+ void set disabled(bool value) native "this.disabled = value;";
- String formEnctype;
+ HTMLFormElement get form() native "return this.form;";
- String formMethod;
+ String get formAction() native "return this.formAction;";
- bool formNoValidate;
+ void set formAction(String value) native "this.formAction = value;";
- String formTarget;
+ String get formEnctype() native "return this.formEnctype;";
- NodeList labels;
+ void set formEnctype(String value) native "this.formEnctype = value;";
- String name;
+ String get formMethod() native "return this.formMethod;";
- String type;
+ void set formMethod(String value) native "this.formMethod = value;";
- String validationMessage;
+ bool get formNoValidate() native "return this.formNoValidate;";
- ValidityState validity;
+ void set formNoValidate(bool value) native "this.formNoValidate = value;";
- String value;
+ String get formTarget() native "return this.formTarget;";
- bool willValidate;
+ void set formTarget(String value) native "this.formTarget = value;";
+
+ NodeList get labels() native "return this.labels;";
+
+ String get name() native "return this.name;";
+
+ void set name(String value) native "this.name = value;";
+
+ 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;";
bool checkValidity() native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLBodyElement.dart ('k') | client/dom/generated/src/frog/HTMLCanvasElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698