OLD | NEW |
1 | 1 |
2 class _HTMLButtonElementJs extends _HTMLElementJs implements HTMLButtonElement n
ative "*HTMLButtonElement" { | 2 class _HTMLButtonElementJs extends _HTMLElementJs implements HTMLButtonElement n
ative "*HTMLButtonElement" { |
3 | 3 |
4 bool autofocus; | 4 bool autofocus; |
5 | 5 |
6 bool disabled; | 6 bool disabled; |
7 | 7 |
8 final _HTMLFormElementJs form; | 8 final _HTMLFormElementJs form; |
9 | 9 |
10 String formAction; | 10 String formAction; |
(...skipping 15 matching lines...) Expand all Loading... |
26 final String validationMessage; | 26 final String validationMessage; |
27 | 27 |
28 final _ValidityStateJs validity; | 28 final _ValidityStateJs validity; |
29 | 29 |
30 String value; | 30 String value; |
31 | 31 |
32 final bool willValidate; | 32 final bool willValidate; |
33 | 33 |
34 bool checkValidity() native; | 34 bool checkValidity() native; |
35 | 35 |
36 void click() native; | |
37 | |
38 void setCustomValidity(String error) native; | 36 void setCustomValidity(String error) native; |
39 } | 37 } |
OLD | NEW |