RESOLVED FIXED 135517
Web Inspector: breakpoint resolved state should not depend on all breakpoints being enabled
https://bugs.webkit.org/show_bug.cgi?id=135517
Summary Web Inspector: breakpoint resolved state should not depend on all breakpoints...
Brian Burg
Reported 2014-08-01 12:09:47 PDT
The breakpoint model consults WebInspector.debuggerManager.breakpointsEnabled, which prevents this invariant from being true. Breakpoint.resolved should not be used as a crutch for styling breakpoint widgets.
Attachments
Patch (15.72 KB, patch)
2014-08-06 17:05 PDT, Brian Burg
joepeck: review+
Radar WebKit Bug Importer
Comment 1 2014-08-01 12:10:36 PDT
Brian Burg
Comment 2 2014-08-06 12:55:51 PDT
Even with fixing breakpoint.resolved digging into DebuggerManager, this is stil not true. There are several places where we set breakpoint.resolved = true|false temporarily, but don't detach or reattach a sourceCode to the location.
Brian Burg
Comment 3 2014-08-06 17:05:48 PDT
Joseph Pecoraro
Comment 4 2014-08-06 17:26:33 PDT
Comment on attachment 236153 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=236153&action=review r=me assuming those lines just need to be swapped. If not, then this probably needs another patch. > Source/WebInspectorUI/UserInterface/Controllers/DebuggerManager.js:310 > + breakpoint.sourceCodeLocation.sourceCode = sourceCodeLocation.sourceCode; > + var sourceCodeLocation = this._sourceCodeLocationFromPayload(location); Err, something seems aloof here. Did the lines get swapped or is "sourceCodeLocation" coming from somewhere else in line 309 making line 310 unnecessary? > Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js:389 > + for (breakpoint of breakpoints) Needs "var breakpoint" or you'll leak a global.
Brian Burg
Comment 5 2014-08-06 17:32:18 PDT
Comment on attachment 236153 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=236153&action=review >> Source/WebInspectorUI/UserInterface/Controllers/DebuggerManager.js:310 >> + var sourceCodeLocation = this._sourceCodeLocationFromPayload(location); > > Err, something seems aloof here. Did the lines get swapped or is "sourceCodeLocation" coming from somewhere else in line 309 making line 310 unnecessary? oops, you are right. It used to be hoisted outside the if. >> Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js:389 >> + for (breakpoint of breakpoints) > > Needs "var breakpoint" or you'll leak a global. I <3 JavaScript. Maybe.
Brian Burg
Comment 6 2014-08-06 23:23:30 PDT
Note You need to log in before you can comment on or make changes to this bug.