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

Unified Diff: client/dom/generated/src/frog/HTMLSelectElement.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/HTMLSelectElement.dart
diff --git a/client/dom/generated/src/frog/HTMLSelectElement.dart b/client/dom/generated/src/frog/HTMLSelectElement.dart
index 0077bea57043c186ce997ecb951862d9ee392a1b..02d6b30c40ac7188f142d8da3c18b0e0ef1e4b92 100644
--- a/client/dom/generated/src/frog/HTMLSelectElement.dart
+++ b/client/dom/generated/src/frog/HTMLSelectElement.dart
@@ -1,5 +1,5 @@
-class HTMLSelectElementJS extends HTMLElementJS implements HTMLSelectElement native "*HTMLSelectElement" {
+class HTMLSelectElementJs extends HTMLElementJs implements HTMLSelectElement native "*HTMLSelectElement" {
bool get autofocus() native "return this.autofocus;";
@@ -9,9 +9,9 @@ class HTMLSelectElementJS extends HTMLElementJS implements HTMLSelectElement nat
void set disabled(bool value) native "this.disabled = value;";
- HTMLFormElementJS get form() native "return this.form;";
+ HTMLFormElementJs get form() native "return this.form;";
- NodeListJS get labels() native "return this.labels;";
+ NodeListJs get labels() native "return this.labels;";
int get length() native "return this.length;";
@@ -25,7 +25,7 @@ class HTMLSelectElementJS extends HTMLElementJS implements HTMLSelectElement nat
void set name(String value) native "this.name = value;";
- HTMLOptionsCollectionJS get options() native "return this.options;";
+ HTMLOptionsCollectionJs get options() native "return this.options;";
bool get required() native "return this.required;";
@@ -43,7 +43,7 @@ class HTMLSelectElementJS extends HTMLElementJS implements HTMLSelectElement nat
String get validationMessage() native "return this.validationMessage;";
- ValidityStateJS get validity() native "return this.validity;";
+ ValidityStateJs get validity() native "return this.validity;";
String get value() native "return this.value;";
@@ -51,13 +51,13 @@ class HTMLSelectElementJS extends HTMLElementJS implements HTMLSelectElement nat
bool get willValidate() native "return this.willValidate;";
- void add(HTMLElementJS element, HTMLElementJS before) native;
+ void add(HTMLElementJs element, HTMLElementJs before) native;
bool checkValidity() native;
- NodeJS item(int index) native;
+ NodeJs item(int index) native;
- NodeJS namedItem(String name) native;
+ NodeJs namedItem(String name) native;
void remove(var index_OR_option) native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLScriptElement.dart ('k') | client/dom/generated/src/frog/HTMLSourceElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698