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

Side by Side Diff: lib/html/doc/interface/ImageElement.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/ImageData.dartdoc ('k') | lib/html/doc/interface/InputElement.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 HTMLImageElement
10 interface ImageElement extends Element default _Elements {
11
12 ImageElement([String src, int height, int width]);
13
14 /** @domName HTMLImageElement.align */
15 String align;
16
17 /** @domName HTMLImageElement.alt */
18 String alt;
19
20 /** @domName HTMLImageElement.border */
21 String border;
22
23 /** @domName HTMLImageElement.complete */
24 final bool complete;
25
26 /** @domName HTMLImageElement.crossOrigin */
27 String crossOrigin;
28
29 /** @domName HTMLImageElement.height */
30 int height;
31
32 /** @domName HTMLImageElement.hspace */
33 int hspace;
34
35 /** @domName HTMLImageElement.isMap */
36 bool isMap;
37
38 /** @domName HTMLImageElement.longDesc */
39 String longDesc;
40
41 /** @domName HTMLImageElement.lowsrc */
42 String lowsrc;
43
44 /** @domName HTMLImageElement.name */
45 String name;
46
47 /** @domName HTMLImageElement.naturalHeight */
48 final int naturalHeight;
49
50 /** @domName HTMLImageElement.naturalWidth */
51 final int naturalWidth;
52
53 /** @domName HTMLImageElement.src */
54 String src;
55
56 /** @domName HTMLImageElement.useMap */
57 String useMap;
58
59 /** @domName HTMLImageElement.vspace */
60 int vspace;
61
62 /** @domName HTMLImageElement.width */
63 int width;
64
65 /** @domName HTMLImageElement.x */
66 final int x;
67
68 /** @domName HTMLImageElement.y */
69 final int y;
70 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/ImageData.dartdoc ('k') | lib/html/doc/interface/InputElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698