docshell/base/crashtests/40929-1-inner.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/docshell/base/crashtests/40929-1-inner.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,14 @@
     1.4 +<html><head><title>Infinite Loop</title></head>
     1.5 +<body onLoad="initNav(); initNav();">
     1.6 +
     1.7 +<script language="JavaScript">
     1.8 +
     1.9 +function initNav() {
    1.10 +  ++parent.i;
    1.11 +  if (parent.i < 10)
    1.12 +  	window.location.href=window.location.href;
    1.13 +}
    1.14 +
    1.15 +</script>
    1.16 +
    1.17 +</body></html>

mercurial