With 1.9.2 the hang was at resource://firebug/firebug-service.js:4290
(which brought me to this thread). After updating to 1.10b1 the hang seems
to occur at resource://firebug/firebug-service.js:3291 (though I think the
line number changes if one clicks the stop script button). Disabling both
the script and console panels (which can be done from any unaffected
window) fixes it and allows Firefox to produce a "too much recursion" error
for the appropriate line in my script. Thus, in my case, the problem is
apparently http://code.google.com/p/fbug/issues/detail?id=4938
This can be triggered by any infinite recursion, such as
<!DOCTYPE html>
<html>
<head><title>test</title></head>
<body>
<input type="button" onclick="f();" value="start infinite recursion" />
<script type="text/javascript"> function f() { f(); } </script>
</body>
</html>
--
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
https://groups.google.com/forum/#!forum/firebug