| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Profiler: test profiles population on DevTools re-opening</title> | 3 <title>Profiler: test profiles population on DevTools re-opening</title> |
| 4 <script type="text/javascript" src="resources/fib.js"></script> | 4 <script type="text/javascript" src="resources/fib.js"></script> |
| 5 <script type="text/javascript"> | 5 <script type="text/javascript"> |
| 6 function profile_fib() { | 6 function profile_fib() { |
| 7 console.profile(); | 7 console.profile(); |
| 8 run_fib(); | 8 run_fib(); |
| 9 window.setTimeout('console.profileEnd();', 5000); | 9 window.setTimeout('console.profileEnd();', 5000); |
| 10 } | 10 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 <li>close DevTools window; | 28 <li>close DevTools window; |
| 29 <li>re-open DevTools window; | 29 <li>re-open DevTools window; |
| 30 <li>go to 'Profiles' page; | 30 <li>go to 'Profiles' page; |
| 31 <li>verify that CPU profiles 'Profile 1' and 'Profile 2', and heap profile
s | 31 <li>verify that CPU profiles 'Profile 1' and 'Profile 2', and heap profile
s |
| 32 taken previously are restored back (<b>Warning:</b> it may take some | 32 taken previously are restored back (<b>Warning:</b> it may take some |
| 33 time to re-process them). | 33 time to re-process them). |
| 34 </ul> | 34 </ul> |
| 35 <br> | 35 <br> |
| 36 </body> | 36 </body> |
| 37 </html> | 37 </html> |
| OLD | NEW |