chromium/third_party/blink/manual_tests/bad-clearTimeout-crash.html

If the back/forward cache is enabled, this test will crash instead of going to the next page that says PASS.

It cannot be automated because DumpRenderTree doesn't support the back/forward cache.

<script>
if (window.testRunner)
    testRunner.waitUntilDone();

setTimeout('',1000);
clearTimeout(0);
clearTimeout(0);
window.location = "data:text/html,This test shouldn't crash. PASS.<scr" + "ipt>if (window.testRunner) testRunner.notifyDone()</scr" + "ipt>";
</script>