If the tab with disabled firebug console causes an error, the error
message appears in some other tab's console (if one has console open).
This can be very confusing for debugging (I have wasted a lot of time
trying to find the cause of some error, only to find out that it
doesn't even originate on my page).

Steps to reproduce:
- create two HTML files, both containing the following javascript
    var n = 0;
    window.setInterval(function() {
        console.info('n = ' + n);
        n++;
    }, 500);
- open both files in different tabs
- enable console in one of these tabs
- you will see interchanging messages "n = ..." and "console is not
defined"; the second message comes from the tab with console disabled
- when you also enable console in the second tab, the error message
stops appearing

-- 
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.

Reply via email to