Files
sdk/tests/lib_2/html/location_test.dart
T
Leaf Petersen b101a7d002 Add language versions to _2 test libraries
Change-Id: Ib33169c3e0ffc870915c189404074a1dea472546
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/196548
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Leaf Petersen <leafp@google.com>
2021-04-26 17:58:57 +00:00

33 lines
792 B
Dart

// @dart = 2.9
import 'dart:html';
import 'package:expect/minitest.dart';
main() {
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);
});
}