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

Unified Diff: client/dom/generated/src/frog/HTMLKeygenElement.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/HTMLKeygenElement.dart
diff --git a/client/dom/generated/src/frog/HTMLKeygenElement.dart b/client/dom/generated/src/frog/HTMLKeygenElement.dart
index 79a042fb3295168e823ca2b4abe793875a138c62..695ddd469290cb3c2b871a5d896a4f6056fd86f3 100644
--- a/client/dom/generated/src/frog/HTMLKeygenElement.dart
+++ b/client/dom/generated/src/frog/HTMLKeygenElement.dart
@@ -1,27 +1,37 @@
class HTMLKeygenElement extends HTMLElement native "*HTMLKeygenElement" {
- bool autofocus;
+ bool get autofocus() native "return this.autofocus;";
- String challenge;
+ void set autofocus(bool value) native "this.autofocus = value;";
- bool disabled;
+ String get challenge() native "return this.challenge;";
- HTMLFormElement form;
+ void set challenge(String value) native "this.challenge = value;";
- String keytype;
+ bool get disabled() native "return this.disabled;";
- NodeList labels;
+ void set disabled(bool value) native "this.disabled = value;";
- String name;
+ HTMLFormElement get form() native "return this.form;";
- String type;
+ String get keytype() native "return this.keytype;";
- String validationMessage;
+ void set keytype(String value) native "this.keytype = value;";
- ValidityState validity;
+ NodeList get labels() native "return this.labels;";
- bool willValidate;
+ 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;";
+
+ bool get willValidate() native "return this.willValidate;";
bool checkValidity() native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLIsIndexElement.dart ('k') | client/dom/generated/src/frog/HTMLLIElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698