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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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 HTMLProgressElementJS extends HTMLElementJS implements HTMLProgressElement native "*HTMLProgressElement" { 2 class HTMLProgressElementJs extends HTMLElementJs implements HTMLProgressElement native "*HTMLProgressElement" {
3 3
4 HTMLFormElementJS get form() native "return this.form;"; 4 HTMLFormElementJs get form() native "return this.form;";
5 5
6 NodeListJS get labels() native "return this.labels;"; 6 NodeListJs get labels() native "return this.labels;";
7 7
8 num get max() native "return this.max;"; 8 num get max() native "return this.max;";
9 9
10 void set max(num value) native "this.max = value;"; 10 void set max(num value) native "this.max = value;";
11 11
12 num get position() native "return this.position;"; 12 num get position() native "return this.position;";
13 13
14 num get value() native "return this.value;"; 14 num get value() native "return this.value;";
15 15
16 void set value(num value) native "this.value = value;"; 16 void set value(num value) native "this.value = value;";
17 } 17 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLPreElement.dart ('k') | client/dom/generated/src/frog/HTMLPropertiesCollection.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698