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

Side by Side Diff: client/dom/generated/src/frog/HTMLOptionElement.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 HTMLOptionElement extends HTMLElement native "*HTMLOptionElement" { 2 class HTMLOptionElementJS extends HTMLElementJS implements HTMLOptionElement nat ive "*HTMLOptionElement" {
3 3
4 bool get defaultSelected() native "return this.defaultSelected;"; 4 bool get defaultSelected() native "return this.defaultSelected;";
5 5
6 void set defaultSelected(bool value) native "this.defaultSelected = value;"; 6 void set defaultSelected(bool value) native "this.defaultSelected = value;";
7 7
8 bool get disabled() native "return this.disabled;"; 8 bool get disabled() native "return this.disabled;";
9 9
10 void set disabled(bool value) native "this.disabled = value;"; 10 void set disabled(bool value) native "this.disabled = value;";
11 11
12 HTMLFormElement get form() native "return this.form;"; 12 HTMLFormElementJS get form() native "return this.form;";
13 13
14 int get index() native "return this.index;"; 14 int get index() native "return this.index;";
15 15
16 String get label() native "return this.label;"; 16 String get label() native "return this.label;";
17 17
18 void set label(String value) native "this.label = value;"; 18 void set label(String value) native "this.label = value;";
19 19
20 bool get selected() native "return this.selected;"; 20 bool get selected() native "return this.selected;";
21 21
22 void set selected(bool value) native "this.selected = value;"; 22 void set selected(bool value) native "this.selected = value;";
23 23
24 String get text() native "return this.text;"; 24 String get text() native "return this.text;";
25 25
26 void set text(String value) native "this.text = value;"; 26 void set text(String value) native "this.text = value;";
27 27
28 String get value() native "return this.value;"; 28 String get value() native "return this.value;";
29 29
30 void set value(String value) native "this.value = value;"; 30 void set value(String value) native "this.value = value;";
31 } 31 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLOptGroupElement.dart ('k') | client/dom/generated/src/frog/HTMLOptionsCollection.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698