[Webkit-unassigned] [Bug 44424] Web Inspector: show DOM breakpoints in sidebar pane

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 24 07:58:40 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=44424


Yury Semikhatsky <yurys at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #65264|review?, commit-queue?      |review+, commit-queue+
               Flag|                            |




--- Comment #9 from Yury Semikhatsky <yurys at chromium.org>  2010-08-24 07:58:40 PST ---
(From update of attachment 65264)
WebCore/inspector/front-end/BreakpointsSidebarPane.js:203
 +              return this._breakpoint.type < other._breakpoint.type ? -1 : 1;
You may replace this with
return this._breakpoint.type - other._breakpoint.type;

WebCore/inspector/front-end/DOMAgent.js:703
 +          for (var type in nodeBreakpoints)
This will fail if nodeBreakpoints is undefined.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list