| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> | 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/resource
s/inspector-protocol-test.js"></script> |
| 4 <script> | 4 <script> |
| 5 | 5 |
| 6 function foo() | 6 function foo() |
| 7 { | 7 { |
| 8 return 239; | 8 return 239; |
| 9 } | 9 } |
| 10 | 10 |
| 11 function test() | 11 function test() |
| 12 { | 12 { |
| 13 InspectorTest.sendCommandOrDie("Debugger.enable", {}); | 13 InspectorTest.sendCommandOrDie("Debugger.enable", {}); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 30 InspectorTest.log("Perform " + action); | 30 InspectorTest.log("Perform " + action); |
| 31 InspectorTest.sendCommandOrDie("Debugger." + action, {}); | 31 InspectorTest.sendCommandOrDie("Debugger." + action, {}); |
| 32 } | 32 } |
| 33 } | 33 } |
| 34 </script> | 34 </script> |
| 35 </head> | 35 </head> |
| 36 <body onLoad="runTest();"> | 36 <body onLoad="runTest();"> |
| 37 Check that stepInto at then end of the script go to next user script instead Inj
ectedScriptSource.js. | 37 Check that stepInto at then end of the script go to next user script instead Inj
ectedScriptSource.js. |
| 38 </body> | 38 </body> |
| 39 </html> | 39 </html> |
| OLD | NEW |