Comment #4 on issue 23278 by [email protected]: Crash in WebCore::toWebCoreString() http://code.google.com/p/chromium/issues/detail?id=23278
I agree with huanr. This page keeps calling synchronous XMLHttpRequest.send from its onreadystatechange event listener in case there is a network error. This exhausts the stack. V8 throws stack overflow exception but there is too little stack space left and the bindings code hit the hard stack limit while trying to report the error. We discussed this with Mads and the best solution (for now) is to limit recursion depth in V8Proxy::callFunction like it's already done for script tags that add themselves. I'll prepare a WebKit patch. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
