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

Unified Diff: LayoutTests/dart/inspector/debugger-code-in-html.html

Issue 23710032: Switch the DevTools to support a true Dart REPL (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: PTAL Created 7 years, 3 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: 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);
}
}
« no previous file with comments | « LayoutTests/dart/inspector/debugger.html ('k') | LayoutTests/dart/inspector/debugger-code-in-html-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698