c265902bea
Review URL: https://chromiumcodereview.appspot.com//10836241 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@10685 260f80e4-7a28-3924-810f-c04153c831b5
19 lines
445 B
Dart
19 lines
445 B
Dart
#library('LocationTest');
|
|
#import('../../pkg/unittest/unittest.dart');
|
|
#import('../../pkg/unittest/html_config.dart');
|
|
#import('dart:html');
|
|
|
|
main() {
|
|
useHtmlConfiguration();
|
|
|
|
test('location hash', () {
|
|
final location = window.location;
|
|
Expect.isTrue(location is Location);
|
|
|
|
// The only navigation we dare try is hash.
|
|
location.hash = 'hello';
|
|
var h = location.hash;
|
|
Expect.equals('#hello', h);
|
|
});
|
|
}
|