Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / bad-clearTimeout-crash.html
blobb7ee23c80253bca87891051d8b0c676a606ef75e
1 If the back/forward cache is enabled, this test will crash instead of going to the next page that says PASS.
3 It cannot be automated because DumpRenderTree doesn't support the back/forward cache.
5 <script>
6 if (window.layoutTestController)
7 layoutTestController.waitUntilDone();
9 setTimeout('',1000);
10 clearTimeout(0);
11 clearTimeout(0);
12 window.location = "data:text/html,This test shouldn't crash. PASS.<scr" + "ipt>if (window.layoutTestController) layoutTestController.notifyDone()</scr" + "ipt>";
13 </script>