never pause here is not working at debugger line
Categories
(DevTools :: Debugger, defect)
Tracking
(Not tracked)
People
(Reporter: naaoffupzhgyjmssxg, Unassigned)
Details
Steps to reproduce:
I was looking into this missing feature https://bugzilla.mozilla.org/show_bug.cgi?id=1578220 when I tried to test debugger call to manually disable them. So I noticed that "never pause here" was not working.
To reproduce:
- Define a function in console as
function pepe(){debugger;} - Call the function
pepe() - Set never suspend here at debugger line
- Call the function again
Actual results:
Debug will break at debugger line
Expected results:
Debug should skip that line
This works on chrome but not in firefox
Comment 1•4 years ago
|
||
The Bugbug bot thinks this bug should belong to the 'DevTools::Debugger' component, and is moving the bug to that component. Please revert this change in case you think the bot is wrong.
Comment 2•4 years ago
|
||
Thanks for reporting!
The equivalent feature to the never pause here in chrome is the blackbox-lines feature mentioned here https://bugzilla.mozilla.org/show_bug.cgi?id=1578220#c11
This STR should work
- Define a function in console as function pepe(){debugger;}
- Call the function pepe()
- Right-click on the line and select Ignore line
- Call the function again
Does this work for you?
Comment 3•3 years ago
|
||
A needinfo is requested from the reporter, however, the reporter is inactive on Bugzilla. Closing the bug as incomplete.
For more information, please visit auto_nag documentation.
Description
•