Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: LayoutTests/inspector/debugger/set-breakpoint.html

Issue 9958020: Merge 112379 - Web Inspector: breakpoints are not shown in sidebar pane after reload. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/inspector/debugger/set-breakpoint-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/inspector/debugger/set-breakpoint-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698