You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Enable win.eval hook
2. Execute evel within the context of a function, not a window, and reference
variables that are only valid within the function context
What is the expected output? What do you see instead?
eval command should work
What version of the product are you using? On what operating system?
eval is executed within the context of the window
Please provide any additional information below.
function x() {
var y = 1;
try {
eval("y++");
} catch(e) {}
}
var z = new x();
Not sure if the try/catch block or function creation matters.
Original issue reported on code.google.com by megazzt on 22 Jun 2011 at 3:07
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
megazzt
on 22 Jun 2011 at 3:07The text was updated successfully, but these errors were encountered: