Hi Rajakumar, Thanks for the report.
2011/6/23 Rajakumar <[email protected]> > Is this information sufficient to log the bug? > It would be better if you could post an test-case (HTML + CSS) that shows IE freezing. It would make it easier to test a fix for this problem. http://code.google.com/p/fbug/issues/list I have looked into processAllStyleSheets() function and I could not see any room for performance improvement. There's no other way than iterating over all rules of all stylesheets, which is a heavy process. If you know any way to improve its performance, please let me know. Here's the code: http://code.google.com/p/fbug/source/browse/lite/branches/firebug1.4/content/firebug/css.js#223 What I can do is to use some setTimeout() tricks to avoid the processAllStyleSheets() freezing the browser. I'll investigate that. Pedro Simonetti. > Thanks, > Rajakumar. > > On Jun 20, 10:08 pm, Pedro Simonetti Garcia <[email protected]> > wrote: > > Are you running Firebug Lite inside a virtual machine? If so, which OS > are > > you running in the virtual machine, and how much memory are you using for > > it? > > > > FBL.processAllStyleSheets is synchronous so it can be the source of the > > freezing, though I never experienced this by myself. How many stylesheets > / > > rules exists in your page? > > > > Could you please post a test case exemplifying this behavior in our bug > > tracking so I can investigate this issue? > > > > http://code.google.com/p/fbug/issues/list > > > > Currently there is no way to disable CSS related panels (which includes > the > > CSS and Style panels). > > > > regards, > > > > Pedro Simonetti. > > > > 2011/6/20 Rajakumar <[email protected]> > > > > > > > > > > > > > > > > > On further investigation found from FBL trace that > > > > > In IE8: FBL.processAllStyleSheets all stylesheet rules processed in > > > 24562ms > > > In FF3.6: FBL.processAllStyleSheets all stylesheet rules processed in > > > 425ms > > > > > I believe this is the reason behind IE showing the long running script > > > warning for FBL. > > > Is there any way to overcome this in IE8? or How to disable CSS tab in > > > FBL? > > > > > On Jun 20, 2:15 pm, Rajakumar <[email protected]> wrote: > > > > I have included Firebug lite to show console messages in our ExtJS > > > > based web application. FF and Chrome works fine. However in IE8, it > > > > shows long running script warning dialog while loading Firebug lite. > > > > > > I knew that through tweaking registry setting in IE8 we can get rid > of > > > > this warning. Is there any other know alternative. It is not > > > > acceptable for all the users to tweak their registry setting for IE8. > > > > > -- > > > 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. > > -- > 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. > > -- 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.
