[Webkit-unassigned] [Bug 172432] New: Web Inspector: Using "break on all exceptions" when throwing stack overflow hangs inspector
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Sun May 21 16:06:17 PDT 2017
https://bugs.webkit.org/show_bug.cgi?id=172432
Bug ID: 172432
Summary: Web Inspector: Using "break on all exceptions" when
throwing stack overflow hangs inspector
Product: WebKit
Version: WebKit Nightly Build
Hardware: All
OS: All
Status: NEW
Severity: Normal
Priority: P2
Component: Web Inspector
Assignee: webkit-unassigned at lists.webkit.org
Reporter: sbarati at apple.com
CC: inspector-bugzilla-changes at group.apple.com
e.g, if I enable "Break on all exceptions" and run this program, web inspector hangs for me. My guess is it's trying to do stuff above the JS stack at the time of stack overflow, which if true, is definitely not allowed.
```
let arg = 20
function f() {
f(arg);
}
function recurse() {
try {
f();
} catch(e) {
}
setTimeout(recurse, 0);
}
recurse();
```
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170521/7231ca1c/attachment.html>
More information about the webkit-unassigned
mailing list