Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / appcache / manifest-with-empty-file.html
blob43015a78cb18905218c1be9bc74993f97875bdfa
1 <html manifest="resources/manifest-with-empty-file.manifest">
2 <div>This tests that a manifest that contains an empty file will not crash the browser.</div>
3 <div id="result">FAILURE</div>
4 <script>
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
10 function cached()
12 document.getElementById('result').innerHTML = 'SUCCESS';
13 if (window.testRunner)
14 testRunner.notifyDone();
17 applicationCache.addEventListener('cached', cached, false);
19 </script>
21 </html>