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

15 lines
250 B
HTML
Raw Normal View History

2009-02-10 00:09:40 -08:00
<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;
2009-02-10 00:09:40 -08:00
}
</script>
</body></html>