| 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/debugger-test.js"></script> | 4 <script src="../../../http/tests/inspector/debugger-test.js"></script> |
| 5 <script src="../resources/timeline-data.js"></script> | 5 <script src="../resources/timeline-data.js"></script> |
| 6 <script> | 6 <script> |
| 7 function test() | 7 function test() |
| 8 { | 8 { |
| 9 var cpuProfile = { | 9 var cpuProfile = { |
| 10 startTime: 10, | 10 startTime: 10e6, |
| 11 endTime: 20, | 11 endTime: 20e6, |
| 12 nodes: [ | 12 nodes: [ |
| 13 { | 13 { |
| 14 id: 0, | 14 id: 0, |
| 15 callFrame: { functionName: "(root)" }, | 15 callFrame: { functionName: "(root)" }, |
| 16 hitCount: 0, | 16 hitCount: 0, |
| 17 children: [1, 2] | 17 children: [1, 2] |
| 18 }, | 18 }, |
| 19 { | 19 { |
| 20 id: 1, | 20 id: 1, |
| 21 callFrame: { functionName: "foo1" }, | 21 callFrame: { functionName: "foo1" }, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 setTimeout(() => InspectorTest.completeTest(), 0); | 72 setTimeout(() => InspectorTest.completeTest(), 0); |
| 73 } | 73 } |
| 74 } | 74 } |
| 75 | 75 |
| 76 </script> | 76 </script> |
| 77 </head> | 77 </head> |
| 78 <body onload="runTest()"> | 78 <body onload="runTest()"> |
| 79 Tests that a line-level CPU profile is shown in the text editor. | 79 Tests that a line-level CPU profile is shown in the text editor. |
| 80 </body> | 80 </body> |
| 81 </html> | 81 </html> |
| OLD | NEW |