| 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/timeline-test.js"></script> | 4 <script src="../../../http/tests/inspector/timeline-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 | 6 |
| 7 testRunner.setDumpConsoleMessages(false); | 7 testRunner.setDumpConsoleMessages(false); |
| 8 | 8 |
| 9 function simpleConsoleTime() | 9 function simpleConsoleTime() |
| 10 { | 10 { |
| 11 console.time("a"); | 11 console.time("a"); |
| 12 console.timeEnd("a"); | 12 console.timeEnd("a"); |
| 13 } | 13 } |
| 14 | 14 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 } | 94 } |
| 95 | 95 |
| 96 </script> | 96 </script> |
| 97 </head> | 97 </head> |
| 98 | 98 |
| 99 <body onload="runTest()"> | 99 <body onload="runTest()"> |
| 100 <p>Test nesting of time/timeEnd records on Timeline</p> | 100 <p>Test nesting of time/timeEnd records on Timeline</p> |
| 101 | 101 |
| 102 </body> | 102 </body> |
| 103 </html> | 103 </html> |
| OLD | NEW |