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

Side by Side Diff: lib/html/doc/interface/AreaElement.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 HTMLAreaElement
8 interface AreaElement extends Element default _Elements {
9
10 AreaElement();
11
12 /** @domName HTMLAreaElement.alt */
13 String alt;
14
15 /** @domName HTMLAreaElement.coords */
16 String coords;
17
18 /** @domName HTMLAreaElement.hash */
19 final String hash;
20
21 /** @domName HTMLAreaElement.host */
22 final String host;
23
24 /** @domName HTMLAreaElement.hostname */
25 final String hostname;
26
27 /** @domName HTMLAreaElement.href */
28 String href;
29
30 /** @domName HTMLAreaElement.noHref */
31 bool noHref;
32
33 /** @domName HTMLAreaElement.pathname */
34 final String pathname;
35
36 /** @domName HTMLAreaElement.ping */
37 String ping;
38
39 /** @domName HTMLAreaElement.port */
40 final String port;
41
42 /** @domName HTMLAreaElement.protocol */
43 final String protocol;
44
45 /** @domName HTMLAreaElement.search */
46 final String search;
47
48 /** @domName HTMLAreaElement.shape */
49 String shape;
50
51 /** @domName HTMLAreaElement.target */
52 String target;
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698