UserAgent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.46 Safari/537.36
Steps to reproduce the problem:
"use strict";
function sub1 () {
debugger;
// any native function here seems to do it
return window.toString();
}
function sub2 () {
2 + 2;
}
sub1();
sub2();
1. paste and run this script in the console (it should pause at the debugger statement)
2. click "step into next function call" once so you're at `return window.toString();`
3. click "step into next function call"
What is the expected behavior?
it should be at end of the "sub1" function with the return value
What went wrong?
it skips to the body of the "sub2" function
Did this work before? N/A
Chrome version: 53.0.2785.46 Channel: beta
OS Version: 6.1 (Windows 7, Windows Server 2008 R2)
Flash Version: Shockwave Flash 22.0 r0
also tested on chrome canary 54.0.2825.0 64-bit
Comment 1 by kozyatinskiy@chromium.org
, Aug 11 2016Status: Assigned (was: Unconfirmed)