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

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

Issue 2526013002: [DevTools] Added inline breakpoints (Closed)
Patch Set: rebased test 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/source-frame-breakpoint-decorations.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-breakpoint-decorations.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-breakpoint-decorations.html
index e06f24830399fc606d60d5234993c30e20f60c47..da8f8643c4f876addc1c1482f903794cde428420 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-breakpoint-decorations.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-breakpoint-decorations.html
@@ -24,6 +24,7 @@ function test()
function addBreakpoint(sourceFrame)
{
javaScriptSourceFrame = sourceFrame;
+ InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
InspectorTest.addResult("Setting breakpoint");
InspectorTest.createNewBreakpoint(javaScriptSourceFrame, 2, "", true)
.then(() => waitAndDumpDecorations(javaScriptSourceFrame))
@@ -46,6 +47,7 @@ function test()
function addBreakpoint(sourceFrame)
{
javaScriptSourceFrame = sourceFrame;
+ InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
InspectorTest.addResult("Setting breakpoint");
InspectorTest.createNewBreakpoint(javaScriptSourceFrame, 2, "", true)
.then(() => InspectorTest.createNewBreakpoint(javaScriptSourceFrame, 0, "true", true))
@@ -68,6 +70,7 @@ function test()
function addRegularDisabled(sourceFrame)
{
+ InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
javaScriptSourceFrame = sourceFrame;
InspectorTest.addResult("Adding regular disabled breakpoint");
waitAndDumpDecorations(javaScriptSourceFrame).then(addConditionalDisabled);

Powered by Google App Engine
This is Rietveld 408576698