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

Unified Diff: client/dom/generated/src/frog/HTMLTableElement.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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/HTMLTableElement.dart
diff --git a/client/dom/generated/src/frog/HTMLTableElement.dart b/client/dom/generated/src/frog/HTMLTableElement.dart
index f5c747f499612dad354731b13bd09b8a02e4b79a..78ee31250d3ebe8d9b322ad084ef26c8d837a136 100644
--- a/client/dom/generated/src/frog/HTMLTableElement.dart
+++ b/client/dom/generated/src/frog/HTMLTableElement.dart
@@ -1,5 +1,5 @@
-class HTMLTableElementJS extends HTMLElementJS implements HTMLTableElement native "*HTMLTableElement" {
+class HTMLTableElementJs extends HTMLElementJs implements HTMLTableElement native "*HTMLTableElement" {
String get align() native "return this.align;";
@@ -13,9 +13,9 @@ class HTMLTableElementJS extends HTMLElementJS implements HTMLTableElement nativ
void set border(String value) native "this.border = value;";
- HTMLTableCaptionElementJS get caption() native "return this.caption;";
+ HTMLTableCaptionElementJs get caption() native "return this.caption;";
- void set caption(HTMLTableCaptionElementJS value) native "this.caption = value;";
+ void set caption(HTMLTableCaptionElementJs value) native "this.caption = value;";
String get cellPadding() native "return this.cellPadding;";
@@ -29,7 +29,7 @@ class HTMLTableElementJS extends HTMLElementJS implements HTMLTableElement nativ
void set frame(String value) native "this.frame = value;";
- HTMLCollectionJS get rows() native "return this.rows;";
+ HTMLCollectionJs get rows() native "return this.rows;";
String get rules() native "return this.rules;";
@@ -39,25 +39,25 @@ class HTMLTableElementJS extends HTMLElementJS implements HTMLTableElement nativ
void set summary(String value) native "this.summary = value;";
- HTMLCollectionJS get tBodies() native "return this.tBodies;";
+ HTMLCollectionJs get tBodies() native "return this.tBodies;";
- HTMLTableSectionElementJS get tFoot() native "return this.tFoot;";
+ HTMLTableSectionElementJs get tFoot() native "return this.tFoot;";
- void set tFoot(HTMLTableSectionElementJS value) native "this.tFoot = value;";
+ void set tFoot(HTMLTableSectionElementJs value) native "this.tFoot = value;";
- HTMLTableSectionElementJS get tHead() native "return this.tHead;";
+ HTMLTableSectionElementJs get tHead() native "return this.tHead;";
- void set tHead(HTMLTableSectionElementJS value) native "this.tHead = value;";
+ void set tHead(HTMLTableSectionElementJs value) native "this.tHead = value;";
String get width() native "return this.width;";
void set width(String value) native "this.width = value;";
- HTMLElementJS createCaption() native;
+ HTMLElementJs createCaption() native;
- HTMLElementJS createTFoot() native;
+ HTMLElementJs createTFoot() native;
- HTMLElementJS createTHead() native;
+ HTMLElementJs createTHead() native;
void deleteCaption() native;
@@ -67,5 +67,5 @@ class HTMLTableElementJS extends HTMLElementJS implements HTMLTableElement nativ
void deleteTHead() native;
- HTMLElementJS insertRow(int index) native;
+ HTMLElementJs insertRow(int index) native;
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableColElement.dart ('k') | client/dom/generated/src/frog/HTMLTableRowElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698