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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 HTMLBodyElement extends HTMLElement native "*HTMLBodyElement" { 2 class HTMLBodyElement extends HTMLElement native "*HTMLBodyElement" {
3 3
4 String aLink; 4 String get aLink() native "return this.aLink;";
5 5
6 String background; 6 void set aLink(String value) native "this.aLink = value;";
7 7
8 String bgColor; 8 String get background() native "return this.background;";
9 9
10 String link; 10 void set background(String value) native "this.background = value;";
11 11
12 String text; 12 String get bgColor() native "return this.bgColor;";
13 13
14 String vLink; 14 void set bgColor(String value) native "this.bgColor = value;";
15
16 String get link() native "return this.link;";
17
18 void set link(String value) native "this.link = value;";
19
20 String get text() native "return this.text;";
21
22 void set text(String value) native "this.text = value;";
23
24 String get vLink() native "return this.vLink;";
25
26 void set vLink(String value) native "this.vLink = value;";
15 } 27 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLBaseFontElement.dart ('k') | client/dom/generated/src/frog/HTMLButtonElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698