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

Side by Side Diff: lib/html/doc/interface/AnchorElement.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/AbstractWorker.dartdoc ('k') | lib/html/doc/interface/Animation.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 HTMLAnchorElement
10 interface AnchorElement extends Element default _Elements {
11
12 AnchorElement([String href]);
13
14 /** @domName HTMLAnchorElement.charset */
15 String charset;
16
17 /** @domName HTMLAnchorElement.coords */
18 String coords;
19
20 /** @domName HTMLAnchorElement.download */
21 String download;
22
23 /** @domName HTMLAnchorElement.hash */
24 String hash;
25
26 /** @domName HTMLAnchorElement.host */
27 String host;
28
29 /** @domName HTMLAnchorElement.hostname */
30 String hostname;
31
32 /** @domName HTMLAnchorElement.href */
33 String href;
34
35 /** @domName HTMLAnchorElement.hreflang */
36 String hreflang;
37
38 /** @domName HTMLAnchorElement.name */
39 String name;
40
41 /** @domName HTMLAnchorElement.origin */
42 final String origin;
43
44 /** @domName HTMLAnchorElement.pathname */
45 String pathname;
46
47 /** @domName HTMLAnchorElement.ping */
48 String ping;
49
50 /** @domName HTMLAnchorElement.port */
51 String port;
52
53 /** @domName HTMLAnchorElement.protocol */
54 String protocol;
55
56 /** @domName HTMLAnchorElement.rel */
57 String rel;
58
59 /** @domName HTMLAnchorElement.rev */
60 String rev;
61
62 /** @domName HTMLAnchorElement.search */
63 String search;
64
65 /** @domName HTMLAnchorElement.shape */
66 String shape;
67
68 /** @domName HTMLAnchorElement.target */
69 String target;
70
71 /** @domName HTMLAnchorElement.type */
72 String type;
73
74 /** @domName HTMLAnchorElement.toString */
75 String toString();
76 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/AbstractWorker.dartdoc ('k') | lib/html/doc/interface/Animation.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698