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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-callstack-xhrs.html

Issue 2650943009: [DevTools] increase AsyncCallStackDepth to 8 (Closed)
Patch Set: added missing test Created 3 years, 11 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-callstack-xhrs.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-callstack-xhrs.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-callstack-xhrs.html
index 34e2baf221d4aa4d27cced9f5ce22bae634afcf5..5efe39d7634b33109d8dab2b93b5bccac76e59d9 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-callstack-xhrs.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-callstack-xhrs.html
@@ -23,7 +23,7 @@ function sendSyncXHR() { sendXHR(false); }
function sendXHR(async)
{
var xhr = new XMLHttpRequest();
- xhr.onreadystatechange = function()
+ xhr.onreadystatechange = function()
{
if (xhr.readyState == 4) {
xhr.onreadystatechange = null;
@@ -69,8 +69,7 @@ function sendXHR(async)
var test = function()
{
var totalDebuggerStatements = 9;
- var maxAsyncCallStackDepth = 4;
- InspectorTest.runAsyncCallStacksTest(totalDebuggerStatements, maxAsyncCallStackDepth);
+ InspectorTest.runAsyncCallStacksTest(totalDebuggerStatements);
}
</script>

Powered by Google App Engine
This is Rietveld 408576698