When will proper stack traces be provided on window.onError function?
error-handling, javascript, stack-trace
Solution
It seems that the error object itself will be the fifth parameter supplied to onerror. http://html5.org/tools/web-apps-tracker?from=8085&to=8086 http://www.whatwg.org/specs/web-apps/current-work/ - section 7.1.6.1
Problem
Exceptions/Errors in many other programming languages (say java, ruby) always provide stacktrace/backtrace information. In JavaScript unhandled Errors get caught by window.onError. Although that function does not get the Error object, so we have no access to the object's stack property. Is there any reliable source of information about when will there be any change on that?