| 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 debugger; | 9 debugger; |
| 10 } | 10 } |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 </script> | 27 </script> |
| 28 </head> | 28 </head> |
| 29 | 29 |
| 30 <body onload="runTest()"> | 30 <body onload="runTest()"> |
| 31 <p> | 31 <p> |
| 32 Tests that debugger will stop on "debugger" statement. | 32 Tests that debugger will stop on "debugger" statement. |
| 33 </p> | 33 </p> |
| 34 | 34 |
| 35 </body> | 35 </body> |
| 36 </html> | 36 </html> |
| OLD | NEW |