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

Unified Diff: client/dom/generated/src/frog/HTMLFormElement.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/HTMLFormElement.dart
diff --git a/client/dom/generated/src/frog/HTMLFormElement.dart b/client/dom/generated/src/frog/HTMLFormElement.dart
index 9d18c25ac3573e8fdb97f1f1d41f0b5a0fa0a062..6e920d3707795123c543958e9877486966d896a6 100644
--- a/client/dom/generated/src/frog/HTMLFormElement.dart
+++ b/client/dom/generated/src/frog/HTMLFormElement.dart
@@ -1,27 +1,45 @@
class HTMLFormElement extends HTMLElement native "*HTMLFormElement" {
- String acceptCharset;
+ String get acceptCharset() native "return this.acceptCharset;";
- String action;
+ void set acceptCharset(String value) native "this.acceptCharset = value;";
- String autocomplete;
+ String get action() native "return this.action;";
- HTMLCollection elements;
+ void set action(String value) native "this.action = value;";
- String encoding;
+ String get autocomplete() native "return this.autocomplete;";
- String enctype;
+ void set autocomplete(String value) native "this.autocomplete = value;";
- int length;
+ HTMLCollection get elements() native "return this.elements;";
- String method;
+ String get encoding() native "return this.encoding;";
- String name;
+ void set encoding(String value) native "this.encoding = value;";
- bool noValidate;
+ String get enctype() native "return this.enctype;";
- String target;
+ void set enctype(String value) native "this.enctype = value;";
+
+ int get length() native "return this.length;";
+
+ String get method() native "return this.method;";
+
+ void set method(String value) native "this.method = value;";
+
+ String get name() native "return this.name;";
+
+ void set name(String value) native "this.name = value;";
+
+ bool get noValidate() native "return this.noValidate;";
+
+ void set noValidate(bool value) native "this.noValidate = value;";
+
+ String get target() native "return this.target;";
+
+ void set target(String value) native "this.target = value;";
bool checkValidity() native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLFontElement.dart ('k') | client/dom/generated/src/frog/HTMLFrameElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698