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

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

Issue 2500493003: [DevTools] make breakpoints better (Closed)
Patch Set: fixed context menu items for gutter 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-breakpoints.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
index 766e338e2c9d5ed4d9aba15e4fee140da91b9ce7..e7866f499c15c0be569d3488eadbbc4c53ec5de2 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html
@@ -83,8 +83,8 @@ function test()
uiSourceCode = sourceFrame._uiSourceCode;
javaScriptSourceFrame._textEditor.main = true;
- InspectorTest.addSniffer(javaScriptSourceFrame._textEditor.__proto__, "addBreakpoint", addBreakpointSniffer, true);
- InspectorTest.addSniffer(javaScriptSourceFrame._textEditor.__proto__, "removeBreakpoint", removeBreakpointSniffer, true);
+ InspectorTest.addSniffer(javaScriptSourceFrame.__proto__, "addBreakpointForTest", addBreakpointSniffer, true);
+ InspectorTest.addSniffer(javaScriptSourceFrame.__proto__, "removeBreakpointForTest", removeBreakpointSniffer, true);
InspectorTest.addResult("Setting breakpoint:");
InspectorTest.addSniffer(Bindings.BreakpointManager.TargetBreakpoint.prototype, "_didSetBreakpointInDebugger", breakpointResolved);

Powered by Google App Engine
This is Rietveld 408576698