blob: e28c4701314ab52c47c3dea43943dc2de17b2b74 [file] [log] [blame]
<html manifest="resources/resource-redirect.manifest">
<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 unexpected event was dispatched on window.applicationCache.");
}
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>