On Feb 5, 12:22 am, Woody <[email protected]> wrote: > Running a script, FB is at a breakpoint in a mouseover event handler. > Clicking FF reload causes FB to give 2 errors: > > uncaught exception: _FirebugCommandLine init failed in file:///C://MyPage.html > because TypeError: window.loadFirebugConsole is not a function > > and an error <MyGlobal> is undefined > > These messages are repeated every time I do a subsequent reload. I can > only clear the condition by opening MyPage.html in a new FF tab. > > Is this error normal? What does it mean?
It means that Firebug's command line initializer Javascript is running in your page and failing because the Firebug console function in that page has disappeared. I guess the reload is not really reloading. Try Control F5. There could be a firebug bug here: when you hit reload while on a breakpoint we have to do some funky code. Firebug has stopped the current page's call stack and spun a new event loop. The reload is on the new event loop. So we have to kill the reload, blow up the current stack, then start the reload over. I can imagine that this code does not work correctly for file urls which are themselves funky. jjb -- 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.
