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

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

Powered by Google App Engine
This is Rietveld 408576698