Index: LayoutTests/inspector/debugger/set-breakpoint.html |
=================================================================== |
--- LayoutTests/inspector/debugger/set-breakpoint.html (revision 112684) |
+++ LayoutTests/inspector/debugger/set-breakpoint.html (working copy) |
@@ -39,6 +39,7 @@ |
{ |
InspectorTest.addResult("Script execution paused."); |
InspectorTest.captureStackTrace(callFrames); |
+ dumpBreakpointSidebarPane() |
InspectorTest.addSniffer(currentSourceFrame, "removeBreakpoint", breakpointRemoved); |
InspectorTest.removeBreakpoint(currentSourceFrame, 16); |
} |
@@ -50,6 +51,7 @@ |
function didResume() |
{ |
+ dumpBreakpointSidebarPane() |
InspectorTest.addResult("Script execution resumed."); |
next(); |
} |
@@ -114,6 +116,14 @@ |
} |
} |
]); |
+ |
+ function dumpBreakpointSidebarPane() |
+ { |
+ var paneElement = WebInspector.panels.scripts.sidebarPanes.jsBreakpoints.listElement |
+ InspectorTest.addResult(""); |
+ InspectorTest.addResult("Dump breakpoint sidebar pane:"); |
+ InspectorTest.addResult(InspectorTest.textContentWithLineBreaks(paneElement)); |
+ } |
} |
</script> |