Index: third_party/WebKit/LayoutTests/inspector-protocol/worker/exception-from-worker-contains-stack.html |
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/worker/exception-from-worker-contains-stack.html b/third_party/WebKit/LayoutTests/inspector-protocol/worker/exception-from-worker-contains-stack.html |
index c1f46a4706c2b1c14f9e009078b8809482097179..726c3a3345daf8829074d984d15d7b8ca944fddf 100644 |
--- a/third_party/WebKit/LayoutTests/inspector-protocol/worker/exception-from-worker-contains-stack.html |
+++ b/third_party/WebKit/LayoutTests/inspector-protocol/worker/exception-from-worker-contains-stack.html |
@@ -53,7 +53,7 @@ function test() |
{ |
var message = JSON.parse(messageObject["params"]["message"]); |
if (message["method"] === "Runtime.exceptionThrown") { |
- var callFrames = message.params.details.stackTrace ? message.params.details.stackTrace.callFrames : []; |
+ var callFrames = message.params.exceptionDetails.stackTrace ? message.params.exceptionDetails.stackTrace.callFrames : []; |
InspectorTest.log(callFrames.length > 0 ? "Message with stack trace received." : "[FAIL] Message contains empty stack trace"); |
messageReceived = true; |
if (messageReceived && workerTerminated) |