8f79798b65
TBR=sgjesse@google.com Review URL: https://codereview.chromium.org//16026004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@23273 260f80e4-7a28-3924-810f-c04153c831b5
34 lines
896 B
Dart
34 lines
896 B
Dart
library LocationTest;
|
|
import '../../pkg/unittest/lib/unittest.dart';
|
|
import '../../pkg/unittest/lib/html_config.dart';
|
|
import 'dart:html';
|
|
|
|
main() {
|
|
useHtmlConfiguration();
|
|
|
|
var isLocation = predicate((x) => x is Location, 'is a Location');
|
|
|
|
test('location hash', () {
|
|
final location = window.location;
|
|
expect(location, isLocation);
|
|
|
|
// The only navigation we dare try is hash.
|
|
location.hash = 'hello';
|
|
var h = location.hash;
|
|
expect(h, '#hello');
|
|
});
|
|
|
|
test('location.origin', () {
|
|
var origin = window.location.origin;
|
|
|
|
// We build up the origin from Uri, then make sure that it matches.
|
|
var uri = Uri.parse(window.location.href);
|
|
var reconstructedOrigin = '${uri.scheme}://${uri.host}';
|
|
if (uri.port != 0) {
|
|
reconstructedOrigin = '$reconstructedOrigin:${uri.port}';
|
|
}
|
|
|
|
expect(origin, reconstructedOrigin);
|
|
});
|
|
}
|