| OLD | NEW |
| (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 } |
| OLD | NEW |