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

Side by Side Diff: client/dom/generated/src/frog/HTMLIFrameElement.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 HTMLIFrameElement extends HTMLElement native "*HTMLIFrameElement" { 2 class HTMLIFrameElementJS extends HTMLElementJS implements HTMLIFrameElement nat ive "*HTMLIFrameElement" {
3 3
4 String get align() native "return this.align;"; 4 String get align() native "return this.align;";
5 5
6 void set align(String value) native "this.align = value;"; 6 void set align(String value) native "this.align = value;";
7 7
8 Document get contentDocument() native "return this.contentDocument;"; 8 DocumentJS get contentDocument() native "return this.contentDocument;";
9 9
10 DOMWindow get contentWindow() native "return this.contentWindow;"; 10 DOMWindowJS get contentWindow() native "return this.contentWindow;";
11 11
12 String get frameBorder() native "return this.frameBorder;"; 12 String get frameBorder() native "return this.frameBorder;";
13 13
14 void set frameBorder(String value) native "this.frameBorder = value;"; 14 void set frameBorder(String value) native "this.frameBorder = value;";
15 15
16 String get height() native "return this.height;"; 16 String get height() native "return this.height;";
17 17
18 void set height(String value) native "this.height = value;"; 18 void set height(String value) native "this.height = value;";
19 19
20 String get longDesc() native "return this.longDesc;"; 20 String get longDesc() native "return this.longDesc;";
(...skipping 21 matching lines...) Expand all
42 void set scrolling(String value) native "this.scrolling = value;"; 42 void set scrolling(String value) native "this.scrolling = value;";
43 43
44 String get src() native "return this.src;"; 44 String get src() native "return this.src;";
45 45
46 void set src(String value) native "this.src = value;"; 46 void set src(String value) native "this.src = value;";
47 47
48 String get width() native "return this.width;"; 48 String get width() native "return this.width;";
49 49
50 void set width(String value) native "this.width = value;"; 50 void set width(String value) native "this.width = value;";
51 51
52 SVGDocument getSVGDocument() native; 52 SVGDocumentJS getSVGDocument() native;
53 } 53 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLHtmlElement.dart ('k') | client/dom/generated/src/frog/HTMLImageElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698