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

Side by Side Diff: lib/html/doc/interface/OutputElement.dart

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: Do not edit - generated code.
6
7 /// @domName HTMLOutputElement
8 interface OutputElement extends Element default _Elements {
9
10 OutputElement();
11
12 /** @domName HTMLOutputElement.defaultValue */
13 String defaultValue;
14
15 /** @domName HTMLOutputElement.form */
16 final FormElement form;
17
18 /** @domName HTMLOutputElement.htmlFor */
19 DOMSettableTokenList htmlFor;
20
21 /** @domName HTMLOutputElement.labels */
22 final NodeList labels;
23
24 /** @domName HTMLOutputElement.name */
25 String name;
26
27 /** @domName HTMLOutputElement.type */
28 final String type;
29
30 /** @domName HTMLOutputElement.validationMessage */
31 final String validationMessage;
32
33 /** @domName HTMLOutputElement.validity */
34 final ValidityState validity;
35
36 /** @domName HTMLOutputElement.value */
37 String value;
38
39 /** @domName HTMLOutputElement.willValidate */
40 final bool willValidate;
41
42 /** @domName HTMLOutputElement.checkValidity */
43 bool checkValidity();
44
45 /** @domName HTMLOutputElement.setCustomValidity */
46 void setCustomValidity(String error);
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698