| 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 test() | 6 function test() |
| 7 { | 7 { |
| 8 | 8 |
| 9 var messages = []; | 9 var messages = []; |
| 10 | 10 |
| 11 function messageAdded(data) | 11 function messageAdded(data) |
| 12 { | 12 { |
| 13 var payload = data.params; | 13 var payload = data.params; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 InspectorTest.sendCommand("Runtime.evaluate", { expression: "console.log('te
stUnique'); for (var i = 0; i < 2; ++i) console.log('testDouble');" }); | 29 InspectorTest.sendCommand("Runtime.evaluate", { expression: "console.log('te
stUnique'); for (var i = 0; i < 2; ++i) console.log('testDouble');" }); |
| 30 } | 30 } |
| 31 | 31 |
| 32 </script> | 32 </script> |
| 33 </head> | 33 </head> |
| 34 <body onload="runTest()"> | 34 <body onload="runTest()"> |
| 35 </body> | 35 </body> |
| 36 </html> | 36 </html> |
| 37 | 37 |
| OLD | NEW |