<html>
<body onload="javascript:onLoad();">
<script>
function onTimeout() {
location.reload(true);
}
function onLoad() {
if (console && typeof console.log == "function") console.log("Hello
world");
// switch to a different tab then allow the timer to expire.
// it will die with javascript error here.
// Next statement will never execute and the page will stop
reloading! -- BUG
setTimeout(onTimeout, 3000);
}
</script>
</html>
--
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en.