RESOLVED WORKSFORME Bug 94518
Web Inspector: setting 'eval' breaks the debugger
https://bugs.webkit.org/show_bug.cgi?id=94518
Summary Web Inspector: setting 'eval' breaks the debugger
felix
Reported 2012-08-20 13:19:15 PDT
If a script sets 'eval' to something other than eval, the debugger becomes pretty useless, there's no way to inspect any values. This is a problem for people working in js sandboxes that disable eval, and possibly a problem for people trying to analyze malicious js. <!doctype html> <html> <head> <script> var e = 33; eval = 'thirty three'; debugger; </script> </head> </html>
Attachments
Note You need to log in before you can comment on or make changes to this bug.