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

Side by Side Diff: lib/html/doc/interface/OutputElement.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/Oscillator.dartdoc ('k') | lib/html/doc/interface/OverflowEvent.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 HTMLOutputElement
10 interface OutputElement extends Element default _Elements {
11
12 OutputElement();
13
14 /** @domName HTMLOutputElement.defaultValue */
15 String defaultValue;
16
17 /** @domName HTMLOutputElement.form */
18 final FormElement form;
19
20 /** @domName HTMLOutputElement.htmlFor */
21 DOMSettableTokenList htmlFor;
22
23 /** @domName HTMLOutputElement.labels */
24 final NodeList labels;
25
26 /** @domName HTMLOutputElement.name */
27 String name;
28
29 /** @domName HTMLOutputElement.type */
30 final String type;
31
32 /** @domName HTMLOutputElement.validationMessage */
33 final String validationMessage;
34
35 /** @domName HTMLOutputElement.validity */
36 final ValidityState validity;
37
38 /** @domName HTMLOutputElement.value */
39 String value;
40
41 /** @domName HTMLOutputElement.willValidate */
42 final bool willValidate;
43
44 /** @domName HTMLOutputElement.checkValidity */
45 bool checkValidity();
46
47 /** @domName HTMLOutputElement.setCustomValidity */
48 void setCustomValidity(String error);
49 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/Oscillator.dartdoc ('k') | lib/html/doc/interface/OverflowEvent.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698