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

Side by Side Diff: lib/html/doc/interface/FormElement.dartdoc

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
« no previous file with comments | « lib/html/doc/interface/FontElement.dartdoc ('k') | lib/html/doc/interface/FrameElement.dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName HTMLFormElement
10 interface FormElement extends Element {
11
12 /** @domName HTMLFormElement.acceptCharset */
13 String acceptCharset;
14
15 /** @domName HTMLFormElement.action */
16 String action;
17
18 /** @domName HTMLFormElement.autocomplete */
19 String autocomplete;
20
21 /** @domName HTMLFormElement.encoding */
22 String encoding;
23
24 /** @domName HTMLFormElement.enctype */
25 String enctype;
26
27 /** @domName HTMLFormElement.length */
28 final int length;
29
30 /** @domName HTMLFormElement.method */
31 String method;
32
33 /** @domName HTMLFormElement.name */
34 String name;
35
36 /** @domName HTMLFormElement.noValidate */
37 bool noValidate;
38
39 /** @domName HTMLFormElement.target */
40 String target;
41
42 /** @domName HTMLFormElement.checkValidity */
43 bool checkValidity();
44
45 /** @domName HTMLFormElement.reset */
46 void reset();
47
48 /** @domName HTMLFormElement.submit */
49 void submit();
50 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/FontElement.dartdoc ('k') | lib/html/doc/interface/FrameElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698