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

Unified Diff: client/dom/generated/src/frog/HTMLSelectElement.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/HTMLSelectElement.dart
diff --git a/client/dom/generated/src/frog/HTMLSelectElement.dart b/client/dom/generated/src/frog/HTMLSelectElement.dart
index ba0ef1a464737dc2042dab71aac88830029a2ea4..a62391c9fc842747beb4bd3ea65f574d9fc04fcd 100644
--- a/client/dom/generated/src/frog/HTMLSelectElement.dart
+++ b/client/dom/generated/src/frog/HTMLSelectElement.dart
@@ -1,37 +1,55 @@
class HTMLSelectElement extends HTMLElement native "*HTMLSelectElement" {
- 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;";
- NodeList labels;
+ void set disabled(bool value) native "this.disabled = value;";
- int length;
+ HTMLFormElement get form() native "return this.form;";
- bool multiple;
+ NodeList get labels() native "return this.labels;";
- String name;
+ int get length() native "return this.length;";
- HTMLOptionsCollection options;
+ void set length(int value) native "this.length = value;";
- bool required;
+ bool get multiple() native "return this.multiple;";
- int selectedIndex;
+ void set multiple(bool value) native "this.multiple = value;";
- int size;
+ String get name() native "return this.name;";
- String type;
+ void set name(String value) native "this.name = value;";
- String validationMessage;
+ HTMLOptionsCollection get options() native "return this.options;";
- ValidityState validity;
+ bool get required() native "return this.required;";
- String value;
+ void set required(bool value) native "this.required = value;";
- bool willValidate;
+ int get selectedIndex() native "return this.selectedIndex;";
+
+ void set selectedIndex(int value) native "this.selectedIndex = value;";
+
+ int get size() native "return this.size;";
+
+ void set size(int value) native "this.size = 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;";
void add(HTMLElement element, HTMLElement before) native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLScriptElement.dart ('k') | client/dom/generated/src/frog/HTMLSourceElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698