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

Unified Diff: content/browser/debugger/manual_tests/profiler-test-console-control.html

Issue 11630004: DevTools: rename debugger/ to devtools/, move DevTools files into content/renderer/devtools. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: For landing Created 8 years 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/debugger/manual_tests/profiler-test-console-control.html
diff --git a/content/browser/debugger/manual_tests/profiler-test-console-control.html b/content/browser/debugger/manual_tests/profiler-test-console-control.html
deleted file mode 100644
index 4f2001a5320835daa59966ebc634e6adde04b3ab..0000000000000000000000000000000000000000
--- a/content/browser/debugger/manual_tests/profiler-test-console-control.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<html>
- <head>
- <title>Profiler: test console controlling of CPU profiling</title>
- <script type="text/javascript" src="resources/fib.js"></script>
- <script type="text/javascript">
- function profile_fib() {
- console.profile();
- run_fib();
- window.setTimeout('console.profileEnd();', 5000);
- }
- </script>
- </head>
- <body onload="profile_fib()">
- This test runs and profiles a simple looped computation.
- <br>
- <br>
- TEST
- <ul>
- <li>load file in the browser;
- <li>open DevTools with console (Ctrl+Shift+I on Win/Linux, Command+Option+I on Mac);
- <li>go to 'Profiles' page;
- <li>observe that 'Profile 1' item has appeared under 'CPU profiles' section;
- <li>check for presence of 'eternal_fib' entry in the profile view.
- </ul>
- <br>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698