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

Unified Diff: LayoutTests/inspector/sources/debugger/async-callstack-scopes.html

Issue 209473013: DevTools: Collect truncated scopes for async stacks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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: LayoutTests/inspector/sources/debugger/async-callstack-scopes.html
diff --git a/LayoutTests/inspector/sources/debugger/async-callstack-scopes.html b/LayoutTests/inspector/sources/debugger/async-callstack-scopes.html
index 9c6b39dc67f99b7c5d1f122afa9d835943b39256..614d6335f1303cbed579b2a57826d3e2cd174324 100644
--- a/LayoutTests/inspector/sources/debugger/async-callstack-scopes.html
+++ b/LayoutTests/inspector/sources/debugger/async-callstack-scopes.html
@@ -39,7 +39,7 @@ function timeout1()
var localInInnerTimeout1 = "innerTimeout1";
setTimeout(timeout2, Number(localInInnerTimeout1 + localInTimeout1) || 0);
}
- makeClosure(1, innerTimeout1)(100);
+ makeClosure(1, innerTimeout1, { foo: "bar1", __proto__: null })(100);
}
function timeout2()
@@ -50,7 +50,7 @@ function timeout2()
var localInInnerTimeout2 = "innerTimeout2";
debugger;
}
- makeClosure(2, innerTimeout2, { foo: "bar", __proto__: null })(200);
+ makeClosure(2, innerTimeout2, { foo: "bar2", __proto__: null })(200);
}
function test()

Powered by Google App Engine
This is Rietveld 408576698