Issue metadata
Sign in to add a comment
|
[DevTools] StepOver doesn't pause after caught exception |
||||||||||||||||||||
Issue description
What steps will reproduce the problem?
(1) Run following code in Console:
function foo()
{
try { throw new Error(); } catch (e) {}
}
debugger;
foo();
console.log(239);
(2) Cick Step Over twice
What is the expected output?
Pause on console.log(239) call.
What do you see instead?
Execution is resumed.
Please use labels and text to provide additional information.
,
Apr 20 2016
The following revision refers to this bug: https://chromium.googlesource.com/chromium/src.git/+/dc3b802c6de47fa18e77ee17f34b569cc2319213 commit dc3b802c6de47fa18e77ee17f34b569cc2319213 Author: kozyatinskiy <kozyatinskiy@chromium.org> Date: Wed Apr 20 23:26:07 2016 [DevTools] Add test for step over function with caught exception BUG= 604495 R=lushnikov@chromium.org Review URL: https://codereview.chromium.org/1902573002 Cr-Commit-Position: refs/heads/master@{#388592} [add] https://crrev.com/dc3b802c6de47fa18e77ee17f34b569cc2319213/third_party/WebKit/LayoutTests/inspector-protocol/debugger/step-over-caught-exception-expected.txt [add] https://crrev.com/dc3b802c6de47fa18e77ee17f34b569cc2319213/third_party/WebKit/LayoutTests/inspector-protocol/debugger/step-over-caught-exception.html
,
Apr 20 2016
,
May 11 2016
|
|||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||
Comment 1 by bugdroid1@chromium.org
, Apr 19 2016