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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-inline-breakpoint-decorations.html

Issue 2669633002: DevTools: rebaseline debugger tests (Closed)
Patch Set: fix comment for frameworks-skip-step-in.html Created 3 years, 11 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
Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-inline-breakpoint-decorations.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-inline-breakpoint-decorations.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-inline-breakpoint-decorations.html
index ed16e8071ba1f91f750ecea2c1f72c93d6675fc9..0ec8830db05243701a162d75834720e31909fcc1 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-inline-breakpoint-decorations.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-inline-breakpoint-decorations.html
@@ -84,21 +84,21 @@ function test()
{
InspectorTest.addResult("Click by second breakpoint");
waitAndDumpDecorations(javaScriptSourceFrame).then(clickByFirstLocation);
- InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 3, 1);
+ InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 3, 1, next);
}
function clickByFirstLocation()
{
InspectorTest.addResult("Click by first breakpoint");
waitAndDumpDecorations(javaScriptSourceFrame).then(clickBySecondLocationAgain);
- InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 3, 0);
+ InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 3, 0, next);
}
function clickBySecondLocationAgain()
{
InspectorTest.addResult("Click by second breakpoint");
waitAndDumpDecorations(javaScriptSourceFrame).then(() => next());
- InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 3, 1);
+ InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 3, 1, next);
}
},
@@ -126,8 +126,8 @@ function test()
{
InspectorTest.addResult("Click by first inline breakpoints");
waitAndDumpDecorations(javaScriptSourceFrame).then(() => next());
- InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 3, 0);
- InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 4, 0);
+ InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 3, 0, next);
+ InspectorTest.clickJavaScriptSourceFrameBreakpoint(javaScriptSourceFrame, 4, 0, next);
}
}
]);

Powered by Google App Engine
This is Rietveld 408576698