| testRunner.waitUntilDone(); |
| document.getElementById("logger").innerHTML += a + "<br>"; |
| location.href = "../resources/storage-close-data-on-idle-switch.html"; |
| testRunner.setStorageDatabaseIdleInterval(0); |
| testRunner.setCacheModel(0); // WebCacheModelDocumentViewer. |
| // Test to make sure the storage values don't change after the database is closed. |
| if ("localStorage" in window) { |
| var loadCount = window.sessionStorage['loadCount']; |
| if (loadCount !== undefined) |
| window.sessionStorage['loadCount'] = loadCount; |
| window.localStorage.clear(); |
| window.localStorage['foo'] = 'FOO'; |
| window.localStorage['bar'] = 'BAR'; |
| setTimeout("loadNextPage()", 0); |
| // Test if we still have the right values. |
| log(window.localStorage['foo'] === 'FOO' ? 'PASS' : 'FAIL'); |
| log(window.localStorage['bar'] === 'BAR' ? 'PASS' : 'FAIL'); |
| testRunner.setStorageDatabaseIdleInterval(300); |
| window.testRunner.notifyDone(); |
| <body onload="runTest();"> |