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..1378028f84091fe893733ad571f9c5151819493b 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.stack ? exceptionDetails.stack.callFrames : null; |
if (!stack) { |
InspectorTest.addResult(" no stack trace attached to exceptionDetails"); |
} else { |