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

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

Issue 2887903002: [DevTools] update decorations when there is no pending possibleBreakpoints (Closed)
Patch Set: better tests Created 3 years, 7 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-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 da8f8643c4f876addc1c1482f903794cde428420..e06f24830399fc606d60d5234993c30e20f60c47 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,7 +24,6 @@ function test()
function addBreakpoint(sourceFrame)
{
javaScriptSourceFrame = sourceFrame;
- InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
InspectorTest.addResult("Setting breakpoint");
InspectorTest.createNewBreakpoint(javaScriptSourceFrame, 2, "", true)
.then(() => waitAndDumpDecorations(javaScriptSourceFrame))
@@ -47,7 +46,6 @@ 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))
@@ -70,7 +68,6 @@ 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