| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-breakpoints.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-breakpoints.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-breakpoints.html
|
| index 03886d65f9c4c2a9bfc7ba0cc63b3519a5b60797..20f17e13706f71f3bf1168212cf4de93e8fdb201 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-breakpoints.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-breakpoints.html
|
| @@ -92,7 +92,7 @@ function test()
|
| function onAsyncOperationStarted(event)
|
| {
|
| var operation = event.data;
|
| - var callFrames = operation.stackTrace || [];
|
| + var callFrames = operation.stackTrace ? operation.stackTrace.callFrames : [];
|
| for (var callFrame of callFrames) {
|
| var functionName = callFrame && callFrame.functionName;
|
| if (functionName === "setAsyncBreakpointForMe") {
|
|
|