Firebug 1.6a11
getfirebug.com has Firebug 1.6X.0a11. This release is dedicated to Sebastian Zartner who recently joined the Firebug Working Group and has been working on our bug list.
- Honza implemented console.table so source like this:
- Disabling break on next error andÂ
debugger;keywords. When you hit these in the debugger you now have the option of replacing them with a disabled breakpoint. The debugger will not break at these lines until you remove the disabled breakpoint:
- You can also see the forward and back arrows Honza added in 1.6a10 in these screenshots.
var family = {}; family.header = ["First", "Last", "Age", "Desc"]; family.mother = new Person("Susan", "Doyle", 32); family.father = new Person("John", "Doyle", 33); family.daughter = new Person("Lily", "Doyle", 5); family.son = new Person("Mike", "Doyle", 8); family.mother.desc = "mother"; family.father.desc = "father"; console.table(family);produces:
More examples are available in our console/api/table test page. This feature was suggested by Patrick Mueller who works on webkit based on a similar feature implemented in FirePHP by Christoph Dorn.
Of course we have bug fixes, mostly around problems I created with the persistent breakpoints feature.
jjb
Please post comments in the newsgroup.

August 24th, 2010 at 2:05 pm
[...] Disabling break on next error and debugger; keywords. [...]
November 7th, 2011 at 12:28 am
[...] Disabling break on next Error and debugger; Keywords. [...]