Issue metadata
Sign in to add a comment
|
Chrome failing to properly step over throw exceptions that are caught
Reported by
freshene...@gmail.com,
May 6 2016
|
||||||||||||||||||||||||
Issue description
UserAgent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36
Steps to reproduce the problem:
1. Make an html page with the following content
<script>
console.log("one")
test()
console.log("three")
function test() {
try {
throw new Error("wathever")
} catch(e) {
console.log("two")
}
}
</script>
2. Set a breakpoint on line two "test()"
3. Try to step over that line
What is the expected behavior?
The dev tools should go to line 3 and wait for you
What went wrong?
The dev tools don't stop on line 3
Did this work before? N/A
Chrome version: 50.0.2661.94 Channel: stable
OS Version: 6.3
Flash Version: Shockwave Flash 21.0 r0
I'm constantly coming across a bug where chrome stops on the thrown exception inside the catch even tho I do NOT have the "Pause on exceptions" option selected. Its really disruptive to my debugging.
,
May 11 2016
|
|||||||||||||||||||||||||
►
Sign in to add a comment |
|||||||||||||||||||||||||
Comment 1 by caseq@chromium.org
, May 11 2016Components: -Platform>DevTools Platform>DevTools>JavaScript
Status: WontFix (was: Unconfirmed)