Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-operation-breakpoints.html

Issue 1666563005: DevTools: merge ScriptCallStack and ScriptAsyncCallStack, move CallStacks from console to Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: testts Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..3bb7d607b7e6012faebe29517ed6cc0d63a3d105 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.stack ? operation.stack.callFrames : [];
for (var callFrame of callFrames) {
var functionName = callFrame && callFrame.functionName;
if (functionName === "setAsyncBreakpointForMe") {

Powered by Google App Engine
This is Rietveld 408576698