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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts-expected.txt

Issue 2727373002: [DevTools] prepare tets for V8 roll (Closed)
Patch Set: Created 3 years, 10 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/debug-inlined-scripts-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts-expected.txt
index 0d11b1d4e10c5fe6ecfe80dd12d70c037961106c..13ecdbb91292e6bc3079d2320b313a1033dbca6b 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debug-inlined-scripts-expected.txt
@@ -3,7 +3,8 @@ Tests that all inlined scripts from the same document are shown in the same sour
Script source was shown.
Script execution paused.
Call stack:
- 0) (debug-inlined-scripts.html:3)
+ 0) f1 (debug-inlined-scripts.html:3)
+ 1) (debug-inlined-scripts.html:3)
Call stack status: Paused on breakpoint
==Source frame contents start==
<html>
@@ -44,10 +45,17 @@ var test = function()
function step2(sourceFrame)
{
InspectorTest.addResult("Script source was shown.");
+ InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
+
InspectorTest.setBreakpoint(sourceFrame, 2, "", true);
InspectorTest.setBreakpoint(sourceFrame, 9, "", true);
+
+ InspectorTest.waitJavaScriptSourceFrameBreakpoints(sourceFrame)
+ .then(() => {
+ InspectorTest.reloadPage(() => InspectorTest.completeDebuggerTest());
+ });
+
InspectorTest.waitUntilPaused(step3);
- InspectorTest.reloadPage(InspectorTest.completeDebuggerTest.bind(InspectorTest));
}
function step3(callFrames)
@@ -145,10 +153,17 @@ var test = function()
function step2(sourceFrame)
{
InspectorTest.addResult("Script source was shown.");
+ InspectorTest.prepareSourceFrameForBreakpointTest(sourceFrame);
+
InspectorTest.setBreakpoint(sourceFrame, 2, "", true);
InspectorTest.setBreakpoint(sourceFrame, 9, "", true);
+
+ InspectorTest.waitJavaScriptSourceFrameBreakpoints(sourceFrame)
+ .then(() => {
+ InspectorTest.reloadPage(() => InspectorTest.completeDebuggerTest());
+ });
+
InspectorTest.waitUntilPaused(step3);
- InspectorTest.reloadPage(InspectorTest.completeDebuggerTest.bind(InspectorTest));
}
function step3(callFrames)

Powered by Google App Engine
This is Rietveld 408576698