| 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 setTimeout(openDB); | 9 setTimeout(openDB); |
| 10 } | 10 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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> |
| OLD | NEW |