blob: c80cce4a1199711f19f0758a99f8a695d211c12d [file] [log] [blame]
#library('HistoryTest');
#import('../../pkg/unittest/unittest.dart');
#import('../../pkg/unittest/html_config.dart');
#import('dart:html');
main() {
useHtmlConfiguration();
test('History', () {
window.history.pushState(null, document.title, '?foo=bar');
expect(window.history.length, equals(2));
window.history.back();
expect(window.location.href.endsWith('foo=bar'), isTrue);
window.history.replaceState(null, document.title, '?foo=baz');
expect(window.history.length, equals(2));
expect(window.location.href.endsWith('foo=baz'), isTrue);
});
}