This is related to:
http://code.google.com/p/fbug/issues/detail?id=2271

Honza

On Dec 3, 2:01 am, John J Barton <[email protected]> wrote:
> Please try your case with Firebug 
> 1.5b5,http://getfirebug.com/releases/firebug/1.5X.
> If it still fails and you post a complete test case 
> tohttp://code.google.com/p/fbug/issues/list
> we'll try to fix it this week.
>
> jjb
>
> On Dec 2, 4:34 pm, Mahks <[email protected]> wrote:
>
> > If you run this code with firebug disabled (in addons, not just
> > deactivated) the error will display in the error console.
> > If firebug is enabled, the error is not displayed and the code breaks
> > at 'not_there()'
>
> > function do_test(){
> >         xml_req('test_data.php')}
>
> > function xml_req(url){
> >         var xml=new XMLHttpRequest()
> >         xml.onreadystatechange=function(){
> >                 if(xml.readyState == 4){
> >                         document.body.style.background='#0f0'
> >                         not_there()        /* THIS SHOULD GENERATE A 'NOT 
> > DEFINED' ERROR
> > BUT DOES NOT IF FIREBUG IS ENABLED */
> >                         document.body.style.background='#f00'
> >                 }
> >         }
> >         xml.open("GET",url,true)
> >         xml.send(null)
>
> > }
>
> > On Nov 13, 6:28 pm, "Honza (Jan Odvarko)" <[email protected]> wrote:
>
> > > Do you have a test case (e.g. an online page) I could try to reproduce
> > > it?
> > > Honza
>
> > > On Nov 13, 5:24 am, Mahks <[email protected]> wrote:
>
> > > > Sometime in the last few weeks, the "notdefined" error has stopped
> > > > being displayed in the error console when firebug is enabled.
>
> > > > I must disable firebug & restart firefox for these errors to be shown.
>
> > > > Any Ideas?
>
>

--

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