When I load a url via WebView, I sometimes receive a flood of numerous messages like this:
10-19 19:18:38.056: ERROR/Web Console(6524):
Uncaught Error: Too much time spent in unload handler. at v8/DateExtension:1
What does this error mean?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This appears to be defined in DateExtension.cpp, in webkit. It’s a C++ exception that is thrown if a JS hook (inserted into Date.getTime, if enableSleepDetection(true) is set) is called more than 1000 times.
You might want to fetch the Android source code to look into it more. There’s no documentation on the file.