[Webkit-unassigned] [Bug 42886] Web Inspector: implement DOM breakpoints
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Aug 19 06:08:20 PDT 2010
https://bugs.webkit.org/show_bug.cgi?id=42886
--- Comment #15 from Yury Semikhatsky <yurys at chromium.org> 2010-08-19 06:08:20 PST ---
(From update of attachment 64818)
WebCore/inspector/InspectorDOMAgent.cpp:764
+ m_breakpoints.set(node, mask & ~rootBit);
Map entry for the node should be removed when its values becomes 0.
WebCore/inspector/InspectorDOMAgent.cpp:1061
+ m_breakpoints.set(node, derivedMask);
This will override previous mask for given node. It should be m_breakpoints.set(node, m_breakpoints.get(node) | derivedMask);
--
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