mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-20 20:29:15 +00:00
15 lines
250 B
HTML
15 lines
250 B
HTML
<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>
|