| 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/inspecto
r-protocol-test.js"></script> |
| 4 <script> | 4 <script> |
| 5 | 5 |
| 6 function test() | 6 function test() |
| 7 { | 7 { |
| 8 var log = []; | 8 var log = []; |
| 9 InspectorTest.eventHandler["Timeline.eventRecorded"] = eventRecorded; | 9 InspectorTest.eventHandler["Timeline.eventRecorded"] = eventRecorded; |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 log.push("Timeline.eventRecorded: " + record.type); | 52 log.push("Timeline.eventRecorded: " + record.type); |
| 53 } | 53 } |
| 54 return; | 54 return; |
| 55 } | 55 } |
| 56 InspectorTest.log("FAIL: Unexpected records arrived"); | 56 InspectorTest.log("FAIL: Unexpected records arrived"); |
| 57 InspectorTest.logObject(msg); | 57 InspectorTest.logObject(msg); |
| 58 } | 58 } |
| 59 } | 59 } |
| 60 | 60 |
| 61 </script> | 61 </script> |
| 62 <link href="resources/style.css" rel="stylesheet"> |
| 62 </head> | 63 </head> |
| 63 <body onload="runTest()"> | 64 <body onload="runTest()"> |
| 64 </body> | 65 </body> |
| 65 </html> | 66 </html> |
| OLD | NEW |