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

Side by Side Diff: client/html/generated/html/frog/ButtonElement.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 _ButtonElementImpl extends _ElementImpl implements ButtonElement native "* HTMLButtonElement" {
3
4 bool autofocus;
5
6 bool disabled;
7
8 final _FormElementImpl form;
9
10 String formAction;
11
12 String formEnctype;
13
14 String formMethod;
15
16 bool formNoValidate;
17
18 String formTarget;
19
20 final _NodeListImpl labels;
21
22 String name;
23
24 final String type;
25
26 final String validationMessage;
27
28 final _ValidityStateImpl validity;
29
30 String value;
31
32 final bool willValidate;
33
34 bool checkValidity() native;
35
36 void setCustomValidity(String error) native;
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698