blob: 89a54108c457059985e5d365c87c82a1cc4d88f9 [file] [log] [blame]
<html manifest="resources/manifest-containing-itself.manifest">
<div>This tests that a manifest can contain itself as a resource.</div>
<div id="result">FAILURE</div>
<script>
if (window.layoutTestController) {
layoutTestController.dumpAsText()
layoutTestController.waitUntilDone();
}
function cached()
{
document.getElementById('result').innerHTML = 'SUCCESS';
if (window.layoutTestController)
layoutTestController.notifyDone();
}
applicationCache.addEventListener('cached', cached, false);
applicationCache.addEventListener('noupdate', cached, false);
</script>
</html>