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

Unified Diff: client/dom/generated/src/frog/HTMLOutputElement.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/HTMLOutputElement.dart
diff --git a/client/dom/generated/src/frog/HTMLOutputElement.dart b/client/dom/generated/src/frog/HTMLOutputElement.dart
index abb1047356f1683a118312bf5806fb4e09a3bccf..8aad18f008673365c9304bea53ac97b601850af9 100644
--- a/client/dom/generated/src/frog/HTMLOutputElement.dart
+++ b/client/dom/generated/src/frog/HTMLOutputElement.dart
@@ -1,25 +1,33 @@
class HTMLOutputElement extends HTMLElement native "*HTMLOutputElement" {
- String defaultValue;
+ String get defaultValue() native "return this.defaultValue;";
- HTMLFormElement form;
+ void set defaultValue(String value) native "this.defaultValue = value;";
- DOMSettableTokenList htmlFor;
+ HTMLFormElement get form() native "return this.form;";
- NodeList labels;
+ DOMSettableTokenList get htmlFor() native "return this.htmlFor;";
- String name;
+ void set htmlFor(DOMSettableTokenList value) native "this.htmlFor = value;";
- String type;
+ NodeList get labels() native "return this.labels;";
- String validationMessage;
+ String get name() native "return this.name;";
- ValidityState validity;
+ void set name(String value) native "this.name = value;";
- String value;
+ String get type() native "return this.type;";
- bool willValidate;
+ 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/HTMLOptionsCollection.dart ('k') | client/dom/generated/src/frog/HTMLParagraphElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698