blob: 9f16d18402926b4177e3203b9016e2837ac655c5 [file] [log] [blame]
<html manifest="resources/manifest-redirect.php">
<body>
<p>Test that a redirect makes resource caching fail.</p>
<p>Should say SUCCESS:</p>
<div id=result></div>
<script>
if (window.testRunner) {
testRunner.dumpAsText()
testRunner.waitUntilDone();
}
function log(message)
{
document.getElementById("result").innerHTML += message + "<br>";
}
function cacheCallback()
{
log("FAIL: An event was dispatched on window.applicationCache, even though it was not associated wuth any cache yet.");
}
function test()
{
// Wait for cache update to finish.
if (window.applicationCache.status != window.applicationCache.UNCACHED)
log("FAILURE: Unexpected cache status: " + window.applicationCache.status);
else
log("SUCCESS");
if (window.testRunner)
testRunner.notifyDone();
}
applicationCache.addEventListener('cached', function() { log("cached"); cacheCallback() }, false);
applicationCache.addEventListener('noupdate', function() { log("noupdate"); cacheCallback() }, false);
applicationCache.addEventListener('error', test, false);
</script>
</body>
</html>