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

Side by Side Diff: lib/html/doc/interface/ObjectElement.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 HTMLObjectElement
10 interface ObjectElement extends Element default _Elements {
11
12 ObjectElement();
13
14 /** @domName HTMLObjectElement.align */
15 String align;
16
17 /** @domName HTMLObjectElement.archive */
18 String archive;
19
20 /** @domName HTMLObjectElement.border */
21 String border;
22
23 /** @domName HTMLObjectElement.code */
24 String code;
25
26 /** @domName HTMLObjectElement.codeBase */
27 String codeBase;
28
29 /** @domName HTMLObjectElement.codeType */
30 String codeType;
31
32 /** @domName HTMLObjectElement.contentDocument */
33 final Document contentDocument;
34
35 /** @domName HTMLObjectElement.data */
36 String data;
37
38 /** @domName HTMLObjectElement.declare */
39 bool declare;
40
41 /** @domName HTMLObjectElement.form */
42 final FormElement form;
43
44 /** @domName HTMLObjectElement.height */
45 String height;
46
47 /** @domName HTMLObjectElement.hspace */
48 int hspace;
49
50 /** @domName HTMLObjectElement.name */
51 String name;
52
53 /** @domName HTMLObjectElement.standby */
54 String standby;
55
56 /** @domName HTMLObjectElement.type */
57 String type;
58
59 /** @domName HTMLObjectElement.useMap */
60 String useMap;
61
62 /** @domName HTMLObjectElement.validationMessage */
63 final String validationMessage;
64
65 /** @domName HTMLObjectElement.validity */
66 final ValidityState validity;
67
68 /** @domName HTMLObjectElement.vspace */
69 int vspace;
70
71 /** @domName HTMLObjectElement.width */
72 String width;
73
74 /** @domName HTMLObjectElement.willValidate */
75 final bool willValidate;
76
77 /** @domName HTMLObjectElement.checkValidity */
78 bool checkValidity();
79
80 /** @domName HTMLObjectElement.setCustomValidity */
81 void setCustomValidity(String error);
82 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/OListElement.dartdoc ('k') | lib/html/doc/interface/OfflineAudioCompletionEvent.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698