Error on shift + click column breakpoints
Categories
(DevTools :: Debugger, defect, P2)
Tracking
(firefox-esr115 affected, firefox126 affected, firefox127 affected, firefox128 affected)
People
(Reporter: bomsy, Unassigned)
Details
Steps to reproduce
- On about:blank
- In the console, evaluate
"--"; document.querySelectorAll("r");debugger;
- Add a breakpoint on line 1
- On the second column breakpoint (the one before
document
), do Shift+Click
Expected results
Should disable breakpoint
Actual results
- Breakpoint is not disabled
- Shows error in the browser console
TypeError: can't access property "disabled", breakpoint is undefined
Note: Could potentially cause a crash (i was not able to produce at this time, but is worth watching out for)
Updated•1 year ago
|
Comment 1•1 year ago
|
||
This bug has been marked as a regression. Setting status flag for Nightly to affected
.
Updated•1 year ago
|
Updated•1 year ago
|
Hello! It seems that moregression indicates this pushlog: https://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=4c09da80722fcf62db02f19dc67f3f1a6b88f84d&tochange=c8b9ae708d8e1805bd68f3deb3c0fe5cd9f9e1c5 so I believe that this started happening after the implementation of bug 1574053. Following the same steps from comment 0 will reproduce the issue.
However, if we add a breakpoint in front of document
and then use Shift + click it will function as expected on my side (it will disable/enable breakpoint). If more information is needed please let me know.
Description
•