| 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>
|
|
|