For the following trivial example:
1 function forTest() {
2 var i;
3
4 for (i=0; i<5; i++) {
5 document.write("This is line " + (i + 1) + "<br />");
6 // console.log("This is line %d", (i + 1));
7 }
8 }
if I use Firebug 1.5.4 and put a breakpoint on line 2, then step
through the code using the Firebug "Step into" button, I can step
through each iteration of the loop.
If line 5 is commented out and line 6 is uncommented, however, then
when stepping into the loop, it's completed, without showing any of
the loop iterations.
Is this an expected limitation of the tool?
Regards,
Gavin Bowlby
--
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.