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

Unified Diff: client/dom/generated/src/frog/HTMLSelectElement.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 a62391c9fc842747beb4bd3ea65f574d9fc04fcd..0077bea57043c186ce997ecb951862d9ee392a1b 100644
--- a/client/dom/generated/src/frog/HTMLSelectElement.dart
+++ b/client/dom/generated/src/frog/HTMLSelectElement.dart
@@ -1,5 +1,5 @@
-class HTMLSelectElement extends HTMLElement native "*HTMLSelectElement" {
+class HTMLSelectElementJS extends HTMLElementJS implements HTMLSelectElement native "*HTMLSelectElement" {
bool get autofocus() native "return this.autofocus;";
@@ -9,9 +9,9 @@ class HTMLSelectElement extends HTMLElement native "*HTMLSelectElement" {
void set disabled(bool value) native "this.disabled = value;";
- HTMLFormElement get form() native "return this.form;";
+ HTMLFormElementJS get form() native "return this.form;";
- NodeList 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 HTMLSelectElement extends HTMLElement native "*HTMLSelectElement" {
void set name(String value) native "this.name = value;";
- HTMLOptionsCollection 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 HTMLSelectElement extends HTMLElement native "*HTMLSelectElement" {
String get validationMessage() native "return this.validationMessage;";
- ValidityState 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 HTMLSelectElement extends HTMLElement native "*HTMLSelectElement" {
bool get willValidate() native "return this.willValidate;";
- void add(HTMLElement element, HTMLElement before) native;
+ void add(HTMLElementJS element, HTMLElementJS before) native;
bool checkValidity() native;
- Node item(int index) native;
+ NodeJS item(int index) native;
- Node 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