blob: 92c7746f4519906c4b36f8bbbdc785079ca1835a [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.testRunner) {
testRunner.dumpAsText()
testRunner.waitUntilDone();
}
function cached()
{
document.getElementById('result').innerHTML = 'SUCCESS';
if (window.testRunner)
testRunner.notifyDone();
}
applicationCache.addEventListener('cached', cached, false);
applicationCache.addEventListener('noupdate', cached, false);
</script>
</html>