Re: Debugger not stopping at hard breakpoint in xul javascript.
"John J. Barton" <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.jsdebugger |
|---|---|
| Message-ID | <[email protected]> |
Dennis Muhlestein wrote:
>
>> Did you have Firebug installed? Having two JS debuggers at once is
>> "iffy" at best, given some of the core implementation of JS debugging.
>>
>
> Sure enough, simply disabling Firebug with Firebugs own enabler/disabler
> wasn't enough. Completely disabling the plugin or uninstalling it
> solved the problem.
>
I suppose the problem is Firebug's use of initAtStartup:
var jsd = DebuggerService.getService(jsdIDebuggerService);
jsd.initAtStartup = true;
Value is never set false in Firebug; I guess it maybe a global pref
stored by jsd across executions?
John.