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

Unified Diff: client/html/generated/src/interface/InputElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/src/interface/InputElement.dart
diff --git a/client/html/generated/src/interface/InputElement.dart b/client/html/generated/src/interface/InputElement.dart
deleted file mode 100644
index 1ae44a525dab59d068eb4360be35d34e56f137b2..0000000000000000000000000000000000000000
--- a/client/html/generated/src/interface/InputElement.dart
+++ /dev/null
@@ -1,198 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-interface InputElement extends Element {
-
- String get accept();
-
- void set accept(String value);
-
- String get accessKey();
-
- void set accessKey(String value);
-
- String get align();
-
- void set align(String value);
-
- String get alt();
-
- void set alt(String value);
-
- String get autocomplete();
-
- void set autocomplete(String value);
-
- bool get autofocus();
-
- void set autofocus(bool value);
-
- bool get checked();
-
- void set checked(bool value);
-
- bool get defaultChecked();
-
- void set defaultChecked(bool value);
-
- String get defaultValue();
-
- void set defaultValue(String value);
-
- bool get disabled();
-
- void set disabled(bool value);
-
- FileList get files();
-
- FormElement get form();
-
- String get formAction();
-
- void set formAction(String value);
-
- String get formEnctype();
-
- void set formEnctype(String value);
-
- String get formMethod();
-
- void set formMethod(String value);
-
- bool get formNoValidate();
-
- void set formNoValidate(bool value);
-
- String get formTarget();
-
- void set formTarget(String value);
-
- bool get incremental();
-
- void set incremental(bool value);
-
- bool get indeterminate();
-
- void set indeterminate(bool value);
-
- ElementList get labels();
-
- Element get list();
-
- String get max();
-
- void set max(String value);
-
- int get maxLength();
-
- void set maxLength(int value);
-
- String get min();
-
- void set min(String value);
-
- bool get multiple();
-
- void set multiple(bool value);
-
- String get name();
-
- void set name(String value);
-
- String get pattern();
-
- void set pattern(String value);
-
- String get placeholder();
-
- void set placeholder(String value);
-
- bool get readOnly();
-
- void set readOnly(bool value);
-
- bool get required();
-
- void set required(bool value);
-
- OptionElement get selectedOption();
-
- String get selectionDirection();
-
- void set selectionDirection(String value);
-
- int get selectionEnd();
-
- void set selectionEnd(int value);
-
- int get selectionStart();
-
- void set selectionStart(int value);
-
- int get size();
-
- void set size(int value);
-
- String get src();
-
- void set src(String value);
-
- String get step();
-
- void set step(String value);
-
- String get type();
-
- void set type(String value);
-
- String get useMap();
-
- void set useMap(String value);
-
- String get validationMessage();
-
- ValidityState get validity();
-
- String get value();
-
- void set value(String value);
-
- Date get valueAsDate();
-
- void set valueAsDate(Date value);
-
- num get valueAsNumber();
-
- void set valueAsNumber(num value);
-
- bool get webkitGrammar();
-
- void set webkitGrammar(bool value);
-
- bool get webkitSpeech();
-
- void set webkitSpeech(bool value);
-
- bool get webkitdirectory();
-
- void set webkitdirectory(bool value);
-
- bool get willValidate();
-
- bool checkValidity();
-
- void click();
-
- void select();
-
- void setCustomValidity(String error);
-
- void setSelectionRange(int start, int end, [String direction]);
-
- void stepDown([int n]);
-
- void stepUp([int n]);
-}

Powered by Google App Engine
This is Rietveld 408576698