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

Side by Side Diff: client/dom/generated/src/frog/HTMLTableSectionElement.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 HTMLTableSectionElementJs extends HTMLElementJs implements HTMLTableSectio nElement native "*HTMLTableSectionElement" { 2 class _HTMLTableSectionElementJs extends _HTMLElementJs implements HTMLTableSect ionElement native "*HTMLTableSectionElement" {
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 String get ch() native "return this.ch;"; 8 String get ch() native "return this.ch;";
9 9
10 void set ch(String value) native "this.ch = value;"; 10 void set ch(String value) native "this.ch = value;";
11 11
12 String get chOff() native "return this.chOff;"; 12 String get chOff() native "return this.chOff;";
13 13
14 void set chOff(String value) native "this.chOff = value;"; 14 void set chOff(String value) native "this.chOff = value;";
15 15
16 HTMLCollectionJs get rows() native "return this.rows;"; 16 _HTMLCollectionJs get rows() native "return this.rows;";
17 17
18 String get vAlign() native "return this.vAlign;"; 18 String get vAlign() native "return this.vAlign;";
19 19
20 void set vAlign(String value) native "this.vAlign = value;"; 20 void set vAlign(String value) native "this.vAlign = value;";
21 21
22 void deleteRow(int index) native; 22 void deleteRow(int index) native;
23 23
24 HTMLElementJs insertRow(int index) native; 24 _HTMLElementJs insertRow(int index) native;
25 } 25 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableRowElement.dart ('k') | client/dom/generated/src/frog/HTMLTextAreaElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698