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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit.html

Issue 2505413002: [DevTools] Prepare JavaScriptSourceFrame for multiple breakpoints per line (Closed)
Patch Set: Created 4 years, 1 month 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
Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit.html
index de3682e0aa1c8b288660030c09d7024127d92808..45b91ad6f78af3a5fb7b50eda8d01c4f7423f143 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit.html
@@ -113,7 +113,7 @@ function test()
function didShowScriptSource(sourceFrame)
{
- InspectorTest.addSniffer(sourceFrame, "_addBreakpointDecoration", breakpointAdded);
+ InspectorTest.addSniffer(sourceFrame, "_breakpointDecorationsUpdatedForTest", breakpointAdded);
InspectorTest.setBreakpoint(sourceFrame, 2, "", true);
}
@@ -140,12 +140,12 @@ function test()
function didShowScriptSource(sourceFrame)
{
testSourceFrame = sourceFrame;
- InspectorTest.addSniffer(sourceFrame, "_addBreakpointDecoration", uiBreakpointAdded);
+ InspectorTest.addSniffer(sourceFrame, "_breakpointDecorationsUpdatedForTest", uiBreakpointAdded);
InspectorTest.setBreakpoint(sourceFrame, 3, "", true);
}
function uiBreakpointAdded() {
- InspectorTest.addSniffer(testSourceFrame, "_addBreakpointDecoration", breakpointAdded);
+ InspectorTest.addSniffer(testSourceFrame, "_breakpointDecorationsUpdatedForTest", breakpointAdded);
}
function breakpointAdded()

Powered by Google App Engine
This is Rietveld 408576698