| <html manifest="resources/manifest-with-empty-file.manifest"> | |
| <div>This tests that a manifest that contains an empty file will not crash the browser.</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> |