| 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)
|
|
|