Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: content/browser/debugger/manual_tests/profiler-test-re-opening.html

Issue 7274031: Wholesale move of debugger sources to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add OWNERS and DEPS. Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698