| 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(callback1, 0); | 9 setTimeout(callback1, 0); |
| 10 } | 10 } |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 </script> | 53 </script> |
| 54 </head> | 54 </head> |
| 55 | 55 |
| 56 <body onload="runTest()"> | 56 <body onload="runTest()"> |
| 57 <p> | 57 <p> |
| 58 Tests that debugger StepOver will stop inside next timeout handler. | 58 Tests that debugger StepOver will stop inside next timeout handler. |
| 59 </p> | 59 </p> |
| 60 </body> | 60 </body> |
| 61 </html> | 61 </html> |
| OLD | NEW |