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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-async/async-callstack-web-sql.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 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 setTimeout(openDB); 9 setTimeout(openDB);
10 } 10 }
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 } 43 }
44 44
45 function onDropTable() 45 function onDropTable()
46 { 46 {
47 debugger; 47 debugger;
48 } 48 }
49 49
50 function test() 50 function test()
51 { 51 {
52 var totalDebuggerStatements = 5; 52 var totalDebuggerStatements = 5;
53 var maxAsyncCallStackDepth = 4; 53 InspectorTest.runAsyncCallStacksTest(totalDebuggerStatements);
54 InspectorTest.runAsyncCallStacksTest(totalDebuggerStatements, maxAsyncCallSt ackDepth);
55 } 54 }
56 55
57 </script> 56 </script>
58 </head> 57 </head>
59 58
60 <body onload="runTest()"> 59 <body onload="runTest()">
61 <input type='button' onclick='testFunction()' value='Test'/> 60 <input type='button' onclick='testFunction()' value='Test'/>
62 <p> 61 <p>
63 Tests asynchronous call stacks for Web SQL. 62 Tests asynchronous call stacks for Web SQL.
64 </p> 63 </p>
65 </body> 64 </body>
66 </html> 65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698