| Index: LayoutTests/dart/inspector/debugger.html
|
| diff --git a/LayoutTests/dart/inspector/debugger.html b/LayoutTests/dart/inspector/debugger.html
|
| index 04b6034f2a268dc2123d5101a361560b86a3dce9..4f7ed9ea8454fda7136355c514277846e5dbde3c 100644
|
| --- a/LayoutTests/dart/inspector/debugger.html
|
| +++ b/LayoutTests/dart/inspector/debugger.html
|
| @@ -42,7 +42,7 @@ function test()
|
|
|
| function didPauseInDart(callFrames)
|
| {
|
| - InspectorTest.captureStackTrace(callFrames);
|
| + InspectorTest.captureStackTrace(callFrames, false, true);
|
| InspectorTest.resumeExecution(resumedDart);
|
| }
|
|
|
| @@ -53,7 +53,7 @@ function test()
|
|
|
| function didPauseInJS(callFrames)
|
| {
|
| - InspectorTest.captureStackTrace(callFrames);
|
| + InspectorTest.captureStackTrace(callFrames, false, true);
|
| InspectorTest.resumeExecution(next);
|
| }
|
| },
|
| @@ -72,7 +72,7 @@ function test()
|
| function didPause(callFrames)
|
| {
|
| // Should pause in JS.
|
| - InspectorTest.captureStackTrace(callFrames);
|
| + InspectorTest.captureStackTrace(callFrames, false, true);
|
| InspectorTest.resumeExecution(next);
|
| }
|
| }
|
|
|