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

Side by Side Diff: client/html/generated/html/frog/SelectElement.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, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class _SelectElementImpl extends _ElementImpl implements SelectElement native "* HTMLSelectElement" {
3
4 bool autofocus;
5
6 bool disabled;
7
8 final _FormElementImpl form;
9
10 final _NodeListImpl labels;
11
12 int length;
13
14 bool multiple;
15
16 String name;
17
18 final _HTMLOptionsCollectionImpl options;
19
20 bool required;
21
22 int selectedIndex;
23
24 int size;
25
26 final String type;
27
28 final String validationMessage;
29
30 final _ValidityStateImpl validity;
31
32 String value;
33
34 final bool willValidate;
35
36 void add(_ElementImpl element, _ElementImpl before) native;
37
38 bool checkValidity() native;
39
40 _NodeImpl item(int index) native;
41
42 _NodeImpl namedItem(String name) native;
43
44 void setCustomValidity(String error) native;
45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698