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

Side by Side Diff: client/html/generated/html/dartium/FormElement.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 _FormElementImpl extends _ElementImpl implements FormElement {
3 _FormElementImpl._wrap(ptr) : super._wrap(ptr);
4
5 String get acceptCharset() => _wrap(_ptr.acceptCharset);
6
7 void set acceptCharset(String value) { _ptr.acceptCharset = _unwrap(value); }
8
9 String get action() => _wrap(_ptr.action);
10
11 void set action(String value) { _ptr.action = _unwrap(value); }
12
13 String get autocomplete() => _wrap(_ptr.autocomplete);
14
15 void set autocomplete(String value) { _ptr.autocomplete = _unwrap(value); }
16
17 String get encoding() => _wrap(_ptr.encoding);
18
19 void set encoding(String value) { _ptr.encoding = _unwrap(value); }
20
21 String get enctype() => _wrap(_ptr.enctype);
22
23 void set enctype(String value) { _ptr.enctype = _unwrap(value); }
24
25 int get length() => _wrap(_ptr.length);
26
27 String get method() => _wrap(_ptr.method);
28
29 void set method(String value) { _ptr.method = _unwrap(value); }
30
31 String get name() => _wrap(_ptr.name);
32
33 void set name(String value) { _ptr.name = _unwrap(value); }
34
35 bool get noValidate() => _wrap(_ptr.noValidate);
36
37 void set noValidate(bool value) { _ptr.noValidate = _unwrap(value); }
38
39 String get target() => _wrap(_ptr.target);
40
41 void set target(String value) { _ptr.target = _unwrap(value); }
42
43 bool checkValidity() {
44 return _wrap(_ptr.checkValidity());
45 }
46
47 void reset() {
48 _ptr.reset();
49 return;
50 }
51
52 void submit() {
53 _ptr.submit();
54 return;
55 }
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698