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

Side by Side Diff: lib/html/doc/interface/Location.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 Location
8 interface Location {
9
10 /** @domName Location.ancestorOrigins */
11 final List<String> ancestorOrigins;
12
13 /** @domName Location.hash */
14 String hash;
15
16 /** @domName Location.host */
17 String host;
18
19 /** @domName Location.hostname */
20 String hostname;
21
22 /** @domName Location.href */
23 String href;
24
25 /** @domName Location.origin */
26 final String origin;
27
28 /** @domName Location.pathname */
29 String pathname;
30
31 /** @domName Location.port */
32 String port;
33
34 /** @domName Location.protocol */
35 String protocol;
36
37 /** @domName Location.search */
38 String search;
39
40 /** @domName Location.assign */
41 void assign(String url);
42
43 /** @domName Location.reload */
44 void reload();
45
46 /** @domName Location.replace */
47 void replace(String url);
48
49 /** @domName Location.toString */
50 String toString();
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698