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

Side by Side Diff: client/dom/generated/src/frog/HTMLKeygenElement.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 HTMLKeygenElement extends HTMLElement native "*HTMLKeygenElement" { 2 class HTMLKeygenElementJS extends HTMLElementJS implements HTMLKeygenElement nat ive "*HTMLKeygenElement" {
3 3
4 bool get autofocus() native "return this.autofocus;"; 4 bool get autofocus() native "return this.autofocus;";
5 5
6 void set autofocus(bool value) native "this.autofocus = value;"; 6 void set autofocus(bool value) native "this.autofocus = value;";
7 7
8 String get challenge() native "return this.challenge;"; 8 String get challenge() native "return this.challenge;";
9 9
10 void set challenge(String value) native "this.challenge = value;"; 10 void set challenge(String value) native "this.challenge = value;";
11 11
12 bool get disabled() native "return this.disabled;"; 12 bool get disabled() native "return this.disabled;";
13 13
14 void set disabled(bool value) native "this.disabled = value;"; 14 void set disabled(bool value) native "this.disabled = value;";
15 15
16 HTMLFormElement get form() native "return this.form;"; 16 HTMLFormElementJS get form() native "return this.form;";
17 17
18 String get keytype() native "return this.keytype;"; 18 String get keytype() native "return this.keytype;";
19 19
20 void set keytype(String value) native "this.keytype = value;"; 20 void set keytype(String value) native "this.keytype = value;";
21 21
22 NodeList get labels() native "return this.labels;"; 22 NodeListJS get labels() native "return this.labels;";
23 23
24 String get name() native "return this.name;"; 24 String get name() native "return this.name;";
25 25
26 void set name(String value) native "this.name = value;"; 26 void set name(String value) native "this.name = value;";
27 27
28 String get type() native "return this.type;"; 28 String get type() native "return this.type;";
29 29
30 String get validationMessage() native "return this.validationMessage;"; 30 String get validationMessage() native "return this.validationMessage;";
31 31
32 ValidityState get validity() native "return this.validity;"; 32 ValidityStateJS get validity() native "return this.validity;";
33 33
34 bool get willValidate() native "return this.willValidate;"; 34 bool get willValidate() native "return this.willValidate;";
35 35
36 bool checkValidity() native; 36 bool checkValidity() native;
37 37
38 void setCustomValidity(String error) native; 38 void setCustomValidity(String error) native;
39 } 39 }
OLDNEW
« 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