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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/source-frame-inline-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-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 0ec8830db05243701a162d75834720e31909fcc1..6bd71acff1e1ed2e58798d525434cd2380efd4e1 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
@@ -31,7 +31,6 @@ function test()
function addBreakpoint(sourceFrame)
{
javaScriptSourceFrame = sourceFrame;
- InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
InspectorTest.addResult("Setting breakpoint");
InspectorTest.createNewBreakpoint(javaScriptSourceFrame, 3, "", true)
.then(() => waitAndDumpDecorations(javaScriptSourceFrame).then(removeBreakpoint));
@@ -53,7 +52,6 @@ function test()
function addBreakpoint(sourceFrame)
{
javaScriptSourceFrame = sourceFrame;
- InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
InspectorTest.addResult("Setting breakpoint");
InspectorTest.createNewBreakpoint(javaScriptSourceFrame, 5, "", true)
.then(() => waitAndDumpDecorations(javaScriptSourceFrame).then(removeBreakpoint));
@@ -74,7 +72,6 @@ function test()
function addBreakpoint(sourceFrame)
{
javaScriptSourceFrame = sourceFrame;
- InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
InspectorTest.addResult("Setting breakpoint");
InspectorTest.createNewBreakpoint(javaScriptSourceFrame, 3, "", true)
.then(() => waitAndDumpDecorations(javaScriptSourceFrame).then(clickBySecondLocation));
@@ -109,7 +106,6 @@ function test()
function addBreakpoint(sourceFrame)
{
javaScriptSourceFrame = sourceFrame;
- InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
InspectorTest.addResult("Setting breakpoint in line 4");
InspectorTest.toggleBreakpoint(sourceFrame, 4, false);
waitAndDumpDecorations(javaScriptSourceFrame).then(toggleBreakpointInAnotherLine);

Powered by Google App Engine
This is Rietveld 408576698