Closed
Bug 1453547
Opened 7 years ago
Closed 7 years ago
new debugger not show async stacks
Categories
(DevTools :: Debugger, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1142571
People
(Reporter: 709922234, Unassigned)
References
Details
Attachments
(3 files)
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:61.0) Gecko/20100101 Firefox/61.0
Build ID: 20180411100123
Steps to reproduce:
1. open devtools
2. load url `data:text/html,<script>setTimeout(function foo() {setTimeout(function bar() {console.trace();debugger;}, 100);}, 100);</script>` // via https://bugzilla.mozilla.org/show_bug.cgi?id=1200832
Actual results:
devtools debugger pannel call stack only show `bar`
Expected results:
show `bar` and `foo` and `<anonymous>`
Component: Untriaged → Developer Tools: Debugger
See Also: → 1200832
more case:
`data:text/html,<head><script>new MutationObserver(() => {console.trace() ;debugger}).observe(document.head, {childList: true }); function bar() {document.head.append(1)} bar() </script>`
`data:text/html,<head><script>setTimeout(function foo() {setTimeout(function bar() {document.head.append(1)}, 100);}, 100);new MutationObserver(() => {console.trace() ;debugger}).observe(document.head, {childList: true });</script>`
Updated•7 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 7 years ago
Resolution: --- → DUPLICATE
Updated•6 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•