DavidBruant / usefulStackTrace

Firefox addon
http://davidbruant.github.io/usefulStackTrace/
MIT License
5 stars 1 forks source link

Stack trace not shown when the error happens in an iframe #8

Open programmin1 opened 10 years ago

programmin1 commented 10 years ago

Although simpler pages will show the stacktrace, more complex ones like this will not: http://jsfiddle.net/46N7k/

DavidBruant commented 10 years ago

I do see a TypeError for $(...).sortable is not a function in the console. Indeed this error doesn't have a stack trace. I believe the reason is that the error is thrown from within an iframe and the addon doesn't track these (it only tracks errors in the main page for now).

I'm changing the bug title to reflect this.

Thanks for the bug report!