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

Unified Diff: client/dom/generated/src/frog/HTMLInputElement.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/HTMLInputElement.dart
diff --git a/client/dom/generated/src/frog/HTMLInputElement.dart b/client/dom/generated/src/frog/HTMLInputElement.dart
index 1bcf03b1eda78df7d61b81ab0a6b3928cfb5021c..99ba8dc56b44da40b99be40cea4d71653cd5c54c 100644
--- a/client/dom/generated/src/frog/HTMLInputElement.dart
+++ b/client/dom/generated/src/frog/HTMLInputElement.dart
@@ -1,5 +1,5 @@
-class HTMLInputElementJS extends HTMLElementJS implements HTMLInputElement native "*HTMLInputElement" {
+class HTMLInputElementJs extends HTMLElementJs implements HTMLInputElement native "*HTMLInputElement" {
String get accept() native "return this.accept;";
@@ -41,9 +41,9 @@ class HTMLInputElementJS extends HTMLElementJS implements HTMLInputElement nativ
void set disabled(bool value) native "this.disabled = value;";
- FileListJS get files() native "return this.files;";
+ FileListJs get files() native "return this.files;";
- HTMLFormElementJS get form() native "return this.form;";
+ HTMLFormElementJs get form() native "return this.form;";
String get formAction() native "return this.formAction;";
@@ -73,9 +73,9 @@ class HTMLInputElementJS extends HTMLElementJS implements HTMLInputElement nativ
void set indeterminate(bool value) native "this.indeterminate = value;";
- NodeListJS get labels() native "return this.labels;";
+ NodeListJs get labels() native "return this.labels;";
- HTMLElementJS get list() native "return this.list;";
+ HTMLElementJs get list() native "return this.list;";
String get max() native "return this.max;";
@@ -113,7 +113,7 @@ class HTMLInputElementJS extends HTMLElementJS implements HTMLInputElement nativ
void set required(bool value) native "this.required = value;";
- HTMLOptionElementJS get selectedOption() native "return this.selectedOption;";
+ HTMLOptionElementJs get selectedOption() native "return this.selectedOption;";
String get selectionDirection() native "return this.selectionDirection;";
@@ -149,7 +149,7 @@ class HTMLInputElementJS extends HTMLElementJS implements HTMLInputElement nativ
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;";
« no previous file with comments | « client/dom/generated/src/frog/HTMLImageElement.dart ('k') | client/dom/generated/src/frog/HTMLIsIndexElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698