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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-callstack.html

Issue 2650943009: [DevTools] increase AsyncCallStackDepth to 8 (Closed)
Patch Set: added missing test Created 3 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../../http/tests/inspector/debugger-test.js"></script> 4 <script src="../../../http/tests/inspector/debugger-test.js"></script>
5 <script> 5 <script>
6 6
7 function testFunction() 7 function testFunction()
8 { 8 {
9 function innerTestFunction() 9 function innerTestFunction()
10 { 10 {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 } 57 }
58 58
59 function timeout3() 59 function timeout3()
60 { 60 {
61 debugger; 61 debugger;
62 } 62 }
63 63
64 var test = function() 64 var test = function()
65 { 65 {
66 var totalDebuggerStatements = 6; 66 var totalDebuggerStatements = 6;
67 var maxAsyncCallStackDepth = 4; 67 InspectorTest.runAsyncCallStacksTest(totalDebuggerStatements);
68 InspectorTest.runAsyncCallStacksTest(totalDebuggerStatements, maxAsyncCallSt ackDepth);
69 } 68 }
70 69
71 </script> 70 </script>
72 </head> 71 </head>
73 72
74 <body onload="runTest()"> 73 <body onload="runTest()">
75 <p> 74 <p>
76 Tests asynchronous call stacks in debugger. 75 Tests asynchronous call stacks in debugger.
77 </p> 76 </p>
78 77
79 </body> 78 </body>
80 </html> 79 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698