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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 HTMLMarqueeElementJs extends HTMLElementJs implements HTMLMarqueeElement n ative "*HTMLMarqueeElement" { 2 class _HTMLMarqueeElementJs extends _HTMLElementJs implements HTMLMarqueeElement native "*HTMLMarqueeElement" {
3 3
4 String get behavior() native "return this.behavior;"; 4 String get behavior() native "return this.behavior;";
5 5
6 void set behavior(String value) native "this.behavior = value;"; 6 void set behavior(String value) native "this.behavior = value;";
7 7
8 String get bgColor() native "return this.bgColor;"; 8 String get bgColor() native "return this.bgColor;";
9 9
10 void set bgColor(String value) native "this.bgColor = value;"; 10 void set bgColor(String value) native "this.bgColor = value;";
11 11
12 String get direction() native "return this.direction;"; 12 String get direction() native "return this.direction;";
(...skipping 29 matching lines...) Expand all
42 void set vspace(int value) native "this.vspace = value;"; 42 void set vspace(int value) native "this.vspace = value;";
43 43
44 String get width() native "return this.width;"; 44 String get width() native "return this.width;";
45 45
46 void set width(String value) native "this.width = value;"; 46 void set width(String value) native "this.width = value;";
47 47
48 void start() native; 48 void start() native;
49 49
50 void stop() native; 50 void stop() native;
51 } 51 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLMapElement.dart ('k') | client/dom/generated/src/frog/HTMLMediaElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698