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

Unified Diff: LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-2-create.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
Index: LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-2-create.html
diff --git a/LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-2-create.html b/LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-2-create.html
deleted file mode 100644
index 6f68abca18fd72ed4e24f496a64ab819e8209d94..0000000000000000000000000000000000000000
--- a/LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-2-create.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<html>
-<head>
-<script src="../../../../fast/js/resources/js-test-pre.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-<script>
-description("StorageTracker test - write local storage for this origin. Should be called after origins-prepare.html.");
-
-if (window.testRunner)
- testRunner.waitUntilDone();
-
-function finishTest() {
- if (window.testRunner)
- testRunner.notifyDone();
-}
-
-function test()
-{
- if (!window.localStorage) {
- testFailed("localStorage DOES NOT exist");
- return;
- }
-
- if (testRunner.originsWithLocalStorage().length > 0) {
- // An origin already exists so we can exit.
- testFailed("An origin already existed with local storage.");
- testRunner.notifyDone();
- } else {
- testRunner.syncLocalStorage();
-
- localStorage.someData = 'writeme';
- // LayoutTestController's notifyDone will be called after the origin change notification comes in.
- testRunner.observeStorageTrackerNotifications(1);
- }
-}
-
-test();
-
-isSuccessfullyParsed();
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698