I am debugging Javascript by loading a webpage, pressing F8 in the debugger, and then entering a line in the console.
This works well, but there is a whole maze of dozens of steps per step + skip until I can exit the "yellow" pages of VM and into real code with a white background.
I turned on the blackboxing function for the VM script, and the debugger tells me that "this script is a black box in the debugger", but the behavior has not changed at all, about a dozen steps in + skip steps are still necessary until I can get out of the "yellow" parts of the VM and the "white" part of the script.
How can I skip the yellow part and go directly to the actual command that I enter the console?
Update: Chrome Canary seems to skip a dozen steps that are required on the yellow page, and takes you just one step from the script code.
source
share