blob: afdc0f626eaddf3c0d83f2f15cd883f954dc7a0c [file] [log] [blame]
<html manifest="resources/empty.manifest">
<div>This tests that the cached event gets sent even if the manifest is empty.</div>
<div id="result">FAILURE</div>
<script>
if (window.testRunner) {
testRunner.dumpAsText()
testRunner.waitUntilDone();
}
function cached()
{
document.getElementById('result').innerHTML = 'SUCCESS';
if (window.testRunner)
testRunner.notifyDone();
}
applicationCache.addEventListener('cached', cached, false);
</script>
</html>