Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Unified Diff: LayoutTests/dart/dom/History.dart

Issue 9188009: Things to unfork. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/dart/dom/HiddenDom2-expected.txt ('k') | LayoutTests/dart/dom/History.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
- });
-}
« no previous file with comments | « LayoutTests/dart/dom/HiddenDom2-expected.txt ('k') | LayoutTests/dart/dom/History.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698