1

I'm trying to debug my firefox extension in Firebug. When there is error in the code, Firebug pauses on the code and I can jump to the code that caused error. The problem is when I want to set breakpoint in the code and trace it, it should theoretically be possible, but I can't find it.

Let's restrict this question to Firebug. I'm not satisfied with Venkman (and solve it elsewhere).

thank you for help

Brock Adams
  • 90,639
  • 22
  • 233
  • 295
xralf
  • 3,312
  • 45
  • 129
  • 200

2 Answers2

3

What you're looking for is Chromebug. It's installed alongside Firebug, and it allows you to work with the actual Firefox chrome in addition to just the HTML page.

Casey Chu
  • 25,069
  • 10
  • 40
  • 59
-2

Go to the Script window and choose the script and set a breakpoint by clicking just to the left of the line number of the chosen script

R1234
  • 484
  • 9
  • 20
  • The problem is in "choose the script". I can see only scripts from the page, not scripts from my extension. – xralf Jun 08 '11 at 11:30