Hola a todos:
Probado en explorer (creo que el 6) y Mozilla firefox (también de las últimas versiones) y empieza de 0
Si no importa el uso de Date() y se quiere que empiece en 00:00:00, hice esta chapucilla:
<html>
<head>
<script>
function ajuste(n) {
return (n < 10) ? "0" + n: n.toString();
}
function sumaMS(MS){
return ++MS % 61;
}
function sumaH(S){
return ++S % 25;
}
var H = -1;
var M = -1;
var S = -1;
function relojito(){
var salida = "";
S = sumaMS(S);
if (S == 0){
M = sumaMS(M);
if (M == 0)
H = sumaH(H)
}
var salida = ajuste(H) + ":" + ajuste(M) + ":" + ajuste(S);
document.getElementById("capa").innerHTML = salida;
setTimeout("relojito()", 1000);
}
</script>
<title>Relojito</title>
</head>
<body onload="relojito()">
<div id="capa"></div>
</body>
</html>
Saludos