Android Webkit debugging: useless exception

I am debugging a web application on an Android phone running webkit (the browser is listed as "Webkit 3.1"). I use weinre to view the console where I log debugging information.

Log messages from the Android website are very different from other browsers - instead of the usual output, most readable files:

[ Exception: TypeError: Result of expression 'Object.getOwnPropertyNames' [undefined] is not a function. ] 

I am not sure how to interpret this message or how to continue debugging.

+3
source share
1 answer

: Object.getOwnPropertyNames(Object). useragent Webkit, getOwnPropertyNames.

+1

All Articles