diff options
Diffstat (limited to 'system/docshell/base/crashtests/40929-1-inner.html')
-rw-r--r-- | system/docshell/base/crashtests/40929-1-inner.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/system/docshell/base/crashtests/40929-1-inner.html b/system/docshell/base/crashtests/40929-1-inner.html new file mode 100644 index 000000000..313046a34 --- /dev/null +++ b/system/docshell/base/crashtests/40929-1-inner.html @@ -0,0 +1,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> |