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

Unified Diff: LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-5-delete-one.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-5-delete-one.html
diff --git a/LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-5-delete-one.html b/LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-5-delete-one.html
deleted file mode 100644
index 9596d7b941e6a64f090fc9369e62e16d8fffe493..0000000000000000000000000000000000000000
--- a/LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-5-delete-one.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("Test API to view origins that have local storage and to delete local storage by origin.");
-
-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) {
- shouldBeEqualToString("testRunner.originsWithLocalStorage().toString()", "file__0");
- // We're just going to delete the existing origin, so we'll get one origin change notification.
- testRunner.observeStorageTrackerNotifications(1);
- // At this point, we're guaranteed to have one origin with local storage.
- testRunner.deleteLocalStorageForOrigin("file://");
- } else {
- testFailed("Ran with no origins with local storage.");
- testRunner.notifyDone();
- }
-
-}
-
-test();
-
-isSuccessfullyParsed();
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698