| 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/console-test.js"></script> | 4 <script src="../../http/tests/inspector/console-test.js"></script> |
| 5 <script src="../../http/tests/inspector/timeline-test.js"></script> | 5 <script src="../../http/tests/inspector/timeline-test.js"></script> |
| 6 <script> | 6 <script> |
| 7 | 7 |
| 8 testRunner.setDumpConsoleMessages(false); |
| 9 |
| 8 function startStopTimeline() | 10 function startStopTimeline() |
| 9 { | 11 { |
| 10 console.timeStamp("timestamp 0"); | 12 console.timeStamp("timestamp 0"); |
| 11 console.timeline("one"); | 13 console.timeline("one"); |
| 12 console.timeStamp("timestamp 1"); | 14 console.timeStamp("timestamp 1"); |
| 13 console.timelineEnd("one"); | 15 console.timelineEnd("one"); |
| 14 console.timeStamp("timestamp 2"); | 16 console.timeStamp("timestamp 2"); |
| 15 } | 17 } |
| 16 | 18 |
| 17 function startStopMultiple() | 19 function startStopMultiple() |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 </script> | 190 </script> |
| 189 </head> | 191 </head> |
| 190 | 192 |
| 191 <body onload="runTest()"> | 193 <body onload="runTest()"> |
| 192 <p> | 194 <p> |
| 193 Tests console.timeline and timelineEnd commands. | 195 Tests console.timeline and timelineEnd commands. |
| 194 </p> | 196 </p> |
| 195 | 197 |
| 196 </body> | 198 </body> |
| 197 </html> | 199 </html> |
| OLD | NEW |