netsurf/test/js/core.recursion.html

23 lines
416 B
HTML
Raw Permalink Normal View History

2013-05-22 20:31:31 +04:00
<html>
<head>
<title>Infinite recursion</title>
<link rel="stylesheet" type="text/css" href="tst.css">
</head>
<body>
<h1>Infinite recursion</h1>
<p>Before</p>
<noscript><p>Javascript is disabled</p></noscript>
2013-05-22 20:31:31 +04:00
<script>
function it_keeps_going_and_going_and_going(i) {
return it_keeps_going_and_going_and_going(i+1);
}
it_keeps_going_and_going_and_going(1)
</script>
</script>
<p>Afterwards</p>
</body>
</html>