| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |