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

Side by Side Diff: lib/html/doc/interface/SelectElement.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
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 HTMLSelectElement
10 interface SelectElement extends Element {
11
12 /** @domName HTMLSelectElement.autofocus */
13 bool autofocus;
14
15 /** @domName HTMLSelectElement.disabled */
16 bool disabled;
17
18 /** @domName HTMLSelectElement.form */
19 final FormElement form;
20
21 /** @domName HTMLSelectElement.labels */
22 final NodeList labels;
23
24 /** @domName HTMLSelectElement.length */
25 int length;
26
27 /** @domName HTMLSelectElement.multiple */
28 bool multiple;
29
30 /** @domName HTMLSelectElement.name */
31 String name;
32
33 /** @domName HTMLSelectElement.options */
34 final HTMLOptionsCollection options;
35
36 /** @domName HTMLSelectElement.required */
37 bool required;
38
39 /** @domName HTMLSelectElement.selectedIndex */
40 int selectedIndex;
41
42 /** @domName HTMLSelectElement.selectedOptions */
43 final HTMLCollection selectedOptions;
44
45 /** @domName HTMLSelectElement.size */
46 int size;
47
48 /** @domName HTMLSelectElement.type */
49 final String type;
50
51 /** @domName HTMLSelectElement.validationMessage */
52 final String validationMessage;
53
54 /** @domName HTMLSelectElement.validity */
55 final ValidityState validity;
56
57 /** @domName HTMLSelectElement.value */
58 String value;
59
60 /** @domName HTMLSelectElement.willValidate */
61 final bool willValidate;
62
63 /** @domName HTMLSelectElement.add */
64 void add(Element element, Element before);
65
66 /** @domName HTMLSelectElement.checkValidity */
67 bool checkValidity();
68
69 /** @domName HTMLSelectElement.item */
70 Node item(int index);
71
72 /** @domName HTMLSelectElement.namedItem */
73 Node namedItem(String name);
74
75 /** @domName HTMLSelectElement.setCustomValidity */
76 void setCustomValidity(String error);
77 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/ScriptProfileNode.dartdoc ('k') | lib/html/doc/interface/SessionDescription.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698