https://fbug.googlecode.com/svn/tests/issues/ConsoleNotDefined.html
Firefox does not fire 'onLocationChange' for the hidden tab, so Firebug does not know that the page changed and thus does not include the console for it. I'm checking with Firefox team, but my guess is that we can't fix this for Firebug 1.5. We need either to reimplement the console (schedule for Firebug 1.7) or get a different way to know about the page change (Firefox 3.7?). jjb On Nov 24, 12:32 pm, kamenjar <[email protected]> wrote: > <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.
