summaryrefslogtreecommitdiffstats
path: root/docshell/base/crashtests/40929-1-inner.html
blob: 313046a348f3306ad289507813393b2e70bd3be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html><head><title>Infinite Loop</title></head>
<body onLoad="initNav(); initNav();">

<script language="JavaScript">

function initNav() {
  ++parent.i;
  if (parent.i < 10)
  	window.location.href=window.location.href;
}

</script>

</body></html>