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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html

Issue 1666563005: DevTools: merge ScriptCallStack and ScriptAsyncCallStack, move CallStacks from console to Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/debugger-compile-and-run.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html
index 851d18facf5792512515508933748e959553008c..53b639ae4e87fe143c8f65044258aa9688de96cd 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/debugger-compile-and-run.html
@@ -11,7 +11,7 @@ var test = function()
InspectorTest.addResult(" " + exceptionDetails.text);
InspectorTest.addResult(" line: " + exceptionDetails.line + ", column: " + exceptionDetails.column);
- var stack = exceptionDetails.stackTrace;
+ var stack = exceptionDetails.stackTrace ? exceptionDetails.stackTrace.callFrames : null;
if (!stack) {
InspectorTest.addResult(" no stack trace attached to exceptionDetails");
} else {

Powered by Google App Engine
This is Rietveld 408576698