Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / appcache / navigating-away-while-cache-attempt-in-progress.html
blobc17c8f914421d4a4115407ec7111a07883b3bdf8
1 <html manifest="resources/navigating-away-while-cache-attempt-in-progress.manifest">
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText()
6 testRunner.waitUntilDone();
9 function navigateAway() {
10 if (window.testRunner)
11 testRunner.notifyDone();
12 else
13 window.location.href = "about:blank"
16 setTimeout(navigateAway, 1000);
18 </script>
19 <div>This tests that navigating away while a cache is loading does not crash.</div>
20 <div>SUCCESS - did not crash</div>
21 </html>