Firebug 在 ExtJS 中不断随机停止
每次加载页面时,FF 3.6 上的 ExtJS 1.7.3 ² 都会停止在第 9863 行:
9860 try{
9861 var ssRules = ss.cssRules || ss.rules;
9862 for(var j = ssRules.length-1; j >= 0; --j){
9863 rules[ssRules[j].selectorText.toLowerCase()] = ssRules[j];
9864 }
9865 }catch(e){}
就像设置了断点一样。按继续 (F8),一切都会继续,就像断点一样。但100%肯定不存在这种事……
嗯?有人有什么想法吗?
² 不,我不想升级,我需要在这个配置下测试。
ExtJS 1.7.3 on FF 3.6 ² keeps stopping on this line 9863, every time I load my page:
9860 try{
9861 var ssRules = ss.cssRules || ss.rules;
9862 for(var j = ssRules.length-1; j >= 0; --j){
9863 rules[ssRules[j].selectorText.toLowerCase()] = ssRules[j];
9864 }
9865 }catch(e){}
just as if I had set a breakpoint. Pressing continue (F8) and everything goes on, just like with a breakpoint. But there 100% certainly is no such thing...
Huh? Anyone has any idea?
² no, I don't want to upgrade, I need to test under this configuration.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了这个问题,并像这样修复了它:
希望这有帮助!
I had this problem and fixed it like so:
Hope this helps!
当你说“停止”时,你是指 Firebug 还是其他什么东西?如果是这样,您是否只启用了异常中断?
When you say "stopping", do you mean in Firebug or something? If so, do you just have break-on-exception enabled?