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

Unified Diff: client/html/generated/html/frog/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/html/frog/InputElement.dart
diff --git a/client/html/generated/html/frog/InputElement.dart b/client/html/generated/html/frog/InputElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..156ebe6324a08d5c3c933b7abd1147bf65b57eba
--- /dev/null
+++ b/client/html/generated/html/frog/InputElement.dart
@@ -0,0 +1,114 @@
+
+class _InputElementImpl extends _ElementImpl implements InputElement native "*HTMLInputElement" {
+
+ String accept;
+
+ String align;
+
+ String alt;
+
+ String autocomplete;
+
+ bool autofocus;
+
+ bool checked;
+
+ bool defaultChecked;
+
+ String defaultValue;
+
+ bool disabled;
+
+ final _FileListImpl files;
+
+ final _FormElementImpl form;
+
+ String formAction;
+
+ String formEnctype;
+
+ String formMethod;
+
+ bool formNoValidate;
+
+ String formTarget;
+
+ bool incremental;
+
+ bool indeterminate;
+
+ final _NodeListImpl labels;
+
+ String max;
+
+ int maxLength;
+
+ String min;
+
+ bool multiple;
+
+ String name;
+
+ String pattern;
+
+ String placeholder;
+
+ bool readOnly;
+
+ bool required;
+
+ String selectionDirection;
+
+ int selectionEnd;
+
+ int selectionStart;
+
+ int size;
+
+ String src;
+
+ String step;
+
+ String type;
+
+ String useMap;
+
+ final String validationMessage;
+
+ final _ValidityStateImpl validity;
+
+ String value;
+
+ Date valueAsDate;
+
+ num valueAsNumber;
+
+ bool webkitGrammar;
+
+ bool webkitSpeech;
+
+ bool webkitdirectory;
+
+ final bool willValidate;
+
+ _InputElementEventsImpl get on() =>
+ new _InputElementEventsImpl(this);
+
+ bool checkValidity() native;
+
+ void select() native;
+
+ void setCustomValidity(String error) native;
+
+ void setSelectionRange(int start, int end, [String direction = null]) native;
+
+ void stepDown([int n = null]) native;
+
+ void stepUp([int n = null]) native;
+}
+
+class _InputElementEventsImpl extends _ElementEventsImpl implements InputElementEvents {
+ _InputElementEventsImpl(_ptr) : super(_ptr);
+
+ EventListenerList get speechChange() => _get('webkitSpeechChange');
+}

Powered by Google App Engine
This is Rietveld 408576698