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

Side by Side Diff: client/dom/generated/src/frog/HTMLFrameElement.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 HTMLFrameElementJS extends HTMLElementJS implements HTMLFrameElement nativ e "*HTMLFrameElement" { 2 class HTMLFrameElementJs extends HTMLElementJs implements HTMLFrameElement nativ e "*HTMLFrameElement" {
3 3
4 DocumentJS get contentDocument() native "return this.contentDocument;"; 4 DocumentJs get contentDocument() native "return this.contentDocument;";
5 5
6 DOMWindowJS get contentWindow() native "return this.contentWindow;"; 6 DOMWindowJs get contentWindow() native "return this.contentWindow;";
7 7
8 String get frameBorder() native "return this.frameBorder;"; 8 String get frameBorder() native "return this.frameBorder;";
9 9
10 void set frameBorder(String value) native "this.frameBorder = value;"; 10 void set frameBorder(String value) native "this.frameBorder = value;";
11 11
12 int get height() native "return this.height;"; 12 int get height() native "return this.height;";
13 13
14 String get location() native "return this.location;"; 14 String get location() native "return this.location;";
15 15
16 void set location(String value) native "this.location = value;"; 16 void set location(String value) native "this.location = value;";
(...skipping 21 matching lines...) Expand all
38 String get scrolling() native "return this.scrolling;"; 38 String get scrolling() native "return this.scrolling;";
39 39
40 void set scrolling(String value) native "this.scrolling = value;"; 40 void set scrolling(String value) native "this.scrolling = value;";
41 41
42 String get src() native "return this.src;"; 42 String get src() native "return this.src;";
43 43
44 void set src(String value) native "this.src = value;"; 44 void set src(String value) native "this.src = value;";
45 45
46 int get width() native "return this.width;"; 46 int get width() native "return this.width;";
47 47
48 SVGDocumentJS getSVGDocument() native; 48 SVGDocumentJs getSVGDocument() native;
49 } 49 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLFormElement.dart ('k') | client/dom/generated/src/frog/HTMLFrameSetElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698