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: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html

Issue 2776523004: [DevTools] fixed some breakpoints-related tests (Closed)
Patch Set: more tests Created 3 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 | third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/set-breakpoint.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html
index 8603c4784c1ac2294ccd0da03f2ed7a02487295a..329b2cadded0a124f4df3529de80522bdc01137c 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/disable-breakpoints.html
@@ -22,9 +22,10 @@ var test = function()
function didShowScriptSource(sourceFrame)
{
InspectorTest.addResult("Script source was shown.");
- InspectorTest.setBreakpoint(sourceFrame, 7, "", true);
InspectorTest.waitUntilPaused(didPause);
- InspectorTest.runTestFunction();
+ InspectorTest.createNewBreakpoint(sourceFrame, 7, "", true)
+ .then(() => InspectorTest.waitBreakpointSidebarPane())
+ .then(() => InspectorTest.runTestFunction());
}
function didPause(callFrames)
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/set-breakpoint.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698