| Index: LayoutTests/dart/inspector/debugger-code-in-html.html
|
| diff --git a/LayoutTests/dart/inspector/debugger-code-in-html.html b/LayoutTests/dart/inspector/debugger-code-in-html.html
|
| index 42b2c1656da50def41617be535e41943442ec234..d43b19fbdd76647e05fcec0680924493063305f5 100644
|
| --- a/LayoutTests/dart/inspector/debugger-code-in-html.html
|
| +++ b/LayoutTests/dart/inspector/debugger-code-in-html.html
|
| @@ -60,7 +60,7 @@ function test()
|
|
|
| function didPauseInDart(callFrames)
|
| {
|
| - InspectorTest.captureStackTrace(callFrames);
|
| + InspectorTest.captureStackTrace(callFrames, false, true);
|
| InspectorTest.resumeExecution(resumedDart);
|
| }
|
|
|
| @@ -71,7 +71,7 @@ function test()
|
|
|
| function didPauseInJS(callFrames)
|
| {
|
| - InspectorTest.captureStackTrace(callFrames);
|
| + InspectorTest.captureStackTrace(callFrames, false, true);
|
| InspectorTest.resumeExecution(next);
|
| }
|
| },
|
| @@ -89,7 +89,7 @@ function test()
|
| function didPause(callFrames)
|
| {
|
| // Should pause in JS.
|
| - InspectorTest.captureStackTrace(callFrames);
|
| + InspectorTest.captureStackTrace(callFrames, false, true);
|
| InspectorTest.resumeExecution(next);
|
| }
|
| }
|
|
|