mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|