Index: LayoutTests/dart/dom/History.dart |
diff --git a/LayoutTests/dart/dom/History.dart b/LayoutTests/dart/dom/History.dart |
deleted file mode 100644 |
index 9a582be0333d1af48c0927c7b19abb4ee2cf9998..0000000000000000000000000000000000000000 |
--- a/LayoutTests/dart/dom/History.dart |
+++ /dev/null |
@@ -1,16 +0,0 @@ |
-#import('../../../../../dart/client/testing/unittest/unittest.dart'); |
-#import('dart:dom'); |
- |
-main() { |
- forLayoutTests(); |
- 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.equals(2, window.history.length); |
- expect(window.location.href.endsWith('foo=baz')).isTrue(); |
- }); |
-} |