A deeper call stack with error in eval-level, script loaded by tag
Script tag includes Javascript
window scope functions first, second.
second() calls eval() on a window scope string
dynamic
The fourth line of dynamic uses
b
which is not defined
The error is eval-level: in the global scope of an eval buffer
01/2007 Works in Firebug 1.1b9 and Fireclipse
Halts on error, positions Script tab to line of error call (a += b;)
Console tab reports error ("b is not defined") and source line of error ("a += b;") correctly.
Console tab error message links to stack with three entries,
__eval_level__(undefined)eval (line 4) second()DeeperCallStackWi... (line 12) first()
All entries in stack are linked to a source line in Script tab window, lines in html are off by one
Javascript console reports error against data: url buffer on correct line