Fix intermittent orange by starting test from onload rather than setTimeout. (Bug 566392) r=jruderman

This commit is contained in:
Mats Palmgren 2010-05-17 15:09:30 -07:00
parent def07e5e0f
commit 36f04b3d7b

View File

@ -20,12 +20,10 @@ function init()
}
}
setTimeout(init, 30);
</script>
</head>
<body><div id="ww"><input type="text" value="inputtext" id="inp">moretext</div></body>
<body onload="init()"><div id="ww"><input type="text" value="inputtext" id="inp">moretext</div></body>
</html>
</html>