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