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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class HTMLButtonElement extends HTMLElement native "*HTMLButtonElement" { 2 class HTMLButtonElement extends HTMLElement native "*HTMLButtonElement" {
3 3
4 bool autofocus; 4 bool get autofocus() native "return this.autofocus;";
5 5
6 bool disabled; 6 void set autofocus(bool value) native "this.autofocus = value;";
7 7
8 HTMLFormElement form; 8 bool get disabled() native "return this.disabled;";
9 9
10 String formAction; 10 void set disabled(bool value) native "this.disabled = value;";
11 11
12 String formEnctype; 12 HTMLFormElement get form() native "return this.form;";
13 13
14 String formMethod; 14 String get formAction() native "return this.formAction;";
15 15
16 bool formNoValidate; 16 void set formAction(String value) native "this.formAction = value;";
17 17
18 String formTarget; 18 String get formEnctype() native "return this.formEnctype;";
19 19
20 NodeList labels; 20 void set formEnctype(String value) native "this.formEnctype = value;";
21 21
22 String name; 22 String get formMethod() native "return this.formMethod;";
23 23
24 String type; 24 void set formMethod(String value) native "this.formMethod = value;";
25 25
26 String validationMessage; 26 bool get formNoValidate() native "return this.formNoValidate;";
27 27
28 ValidityState validity; 28 void set formNoValidate(bool value) native "this.formNoValidate = value;";
29 29
30 String value; 30 String get formTarget() native "return this.formTarget;";
31 31
32 bool willValidate; 32 void set formTarget(String value) native "this.formTarget = value;";
33
34 NodeList get labels() native "return this.labels;";
35
36 String get name() native "return this.name;";
37
38 void set name(String value) native "this.name = value;";
39
40 String get type() native "return this.type;";
41
42 String get validationMessage() native "return this.validationMessage;";
43
44 ValidityState get validity() native "return this.validity;";
45
46 String get value() native "return this.value;";
47
48 void set value(String value) native "this.value = value;";
49
50 bool get willValidate() native "return this.willValidate;";
33 51
34 bool checkValidity() native; 52 bool checkValidity() native;
35 53
36 void click() native; 54 void click() native;
37 55
38 void setCustomValidity(String error) native; 56 void setCustomValidity(String error) native;
39 } 57 }
OLDNEW
« 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