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

Side by Side Diff: client/dom/generated/src/frog/HTMLFormElement.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class HTMLFormElementJs extends HTMLElementJs implements HTMLFormElement native "*HTMLFormElement" { 2 class _HTMLFormElementJs extends _HTMLElementJs implements HTMLFormElement nativ e "*HTMLFormElement" {
3 3
4 String get acceptCharset() native "return this.acceptCharset;"; 4 String get acceptCharset() native "return this.acceptCharset;";
5 5
6 void set acceptCharset(String value) native "this.acceptCharset = value;"; 6 void set acceptCharset(String value) native "this.acceptCharset = value;";
7 7
8 String get action() native "return this.action;"; 8 String get action() native "return this.action;";
9 9
10 void set action(String value) native "this.action = value;"; 10 void set action(String value) native "this.action = value;";
11 11
12 String get autocomplete() native "return this.autocomplete;"; 12 String get autocomplete() native "return this.autocomplete;";
13 13
14 void set autocomplete(String value) native "this.autocomplete = value;"; 14 void set autocomplete(String value) native "this.autocomplete = value;";
15 15
16 HTMLCollectionJs get elements() native "return this.elements;"; 16 _HTMLCollectionJs get elements() native "return this.elements;";
17 17
18 String get encoding() native "return this.encoding;"; 18 String get encoding() native "return this.encoding;";
19 19
20 void set encoding(String value) native "this.encoding = value;"; 20 void set encoding(String value) native "this.encoding = value;";
21 21
22 String get enctype() native "return this.enctype;"; 22 String get enctype() native "return this.enctype;";
23 23
24 void set enctype(String value) native "this.enctype = value;"; 24 void set enctype(String value) native "this.enctype = value;";
25 25
26 int get length() native "return this.length;"; 26 int get length() native "return this.length;";
(...skipping 13 matching lines...) Expand all
40 String get target() native "return this.target;"; 40 String get target() native "return this.target;";
41 41
42 void set target(String value) native "this.target = value;"; 42 void set target(String value) native "this.target = value;";
43 43
44 bool checkValidity() native; 44 bool checkValidity() native;
45 45
46 void reset() native; 46 void reset() native;
47 47
48 void submit() native; 48 void submit() native;
49 } 49 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLFontElement.dart ('k') | client/dom/generated/src/frog/HTMLFrameElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698