| Index: LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-3-delete-all.html
|
| diff --git a/LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-3-delete-all.html b/LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-3-delete-all.html
|
| deleted file mode 100644
|
| index e5287fe0d4f297329b36a34fe9bad597302c51d8..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/storage/domstorage/localstorage/storagetracker/storage-tracker-3-delete-all.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);
|
| - testRunner.deleteAllLocalStorage();
|
| - } else {
|
| - testRunner.notifyDone();
|
| - testFailed("Ran with no origins with local storage");
|
| - }
|
| -
|
| - // At this point, we're guaranteed to have one origin with local storage.
|
| -}
|
| -
|
| -test();
|
| -
|
| -isSuccessfullyParsed();
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|