mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
417 B
HTML
26 lines
417 B
HTML
|
<HTML>
|
||
|
<HEAD>
|
||
|
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
|
||
|
<TITLE>JS Test 1</TITLE>
|
||
|
<script>
|
||
|
var gCounter = 0;
|
||
|
|
||
|
function doLoad()
|
||
|
{
|
||
|
setTimeout("counter()", 1000);
|
||
|
}
|
||
|
|
||
|
function counter()
|
||
|
{
|
||
|
document.getElementById("status").value = gCounter++;
|
||
|
setTimeout("counter()", 1000);
|
||
|
}
|
||
|
</script>
|
||
|
</HEAD>
|
||
|
<BODY onload="doLoad()">
|
||
|
|
||
|
<input type=text id=status>
|
||
|
|
||
|
</BODY>
|
||
|
</HTML>
|