| 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 src="resources/script1.js"></script> | 5 <script src="../debugger/resources/script1.js"></script> |
| 6 <script> | 6 <script> |
| 7 function throwAnException() | 7 function throwAnException() |
| 8 { | 8 { |
| 9 var i = 0; var j = i + 2; var k = j + i; | 9 var i = 0; var j = i + 2; var k = j + i; |
| 10 | 10 |
| 11 return unknown_var; | 11 return unknown_var; |
| 12 } | 12 } |
| 13 | 13 |
| 14 var test = function() | 14 var test = function() |
| 15 { | 15 { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 } | 85 } |
| 86 } | 86 } |
| 87 ]); | 87 ]); |
| 88 } | 88 } |
| 89 </script> | 89 </script> |
| 90 </head> | 90 </head> |
| 91 <body onload="runTest()"> | 91 <body onload="runTest()"> |
| 92 <p>Tests that certain user actions in scripts panel reveal execution line.</p> | 92 <p>Tests that certain user actions in scripts panel reveal execution line.</p> |
| 93 </body> | 93 </body> |
| 94 </html> | 94 </html> |
| OLD | NEW |