| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-events.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-events.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-events.html
|
| index 648e21b83a0312d45db3110ab71412a58294326a..906f1c71d5006e480e00fe618760c1f011624be6 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-events.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-events.html
|
| @@ -106,12 +106,12 @@ function test()
|
| function asyncOperationDescription(operation)
|
| {
|
| var link = "";
|
| - var callFrame = operation.stackTrace && operation.stackTrace[0];
|
| + var callFrame = operation.stack ? operation.stack.callFrames[0] : null;
|
| if (callFrame) {
|
| var url = WebInspector.displayNameForURL(callFrame.url);
|
| link = " " + callFrame.functionName + " @ " + url + ":" + callFrame.lineNumber;
|
| }
|
| - return ("[" + operation.description + "]" + link);
|
| + return ("[" + operation.stack.description + "]" + link);
|
| }
|
|
|
| function maybeRunNoAsyncOperationsCallback()
|
|
|