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

Unified Diff: chrome/test/data/devtools/js_page.html

Issue 6295010: DevTools: re-enable devtools tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed obsolete test data. Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/devtools/image.png ('k') | chrome/test/data/devtools/resource_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/devtools/js_page.html
diff --git a/chrome/test/data/devtools/js_page.html b/chrome/test/data/devtools/js_page.html
deleted file mode 100644
index 0e8d2b737bac9907c0bb7d828c913741de818829..0000000000000000000000000000000000000000
--- a/chrome/test/data/devtools/js_page.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
- <head>
- <script>
- function fib(n) {
- return n < 2 ? 1 : fib(n - 1) + fib(n - 2);
- }
-
- function eternal_fib() {
- console.profile();
- for (var i = 0; i < 50; ++i) {
- fib(20);
- }
- console.profileEnd();
- }
-
- function load() {
- // Let the page do initial rendering, then go.
- setTimeout(eternal_fib, 200);
- }
- </script>
- </head>
- <body onload="load()">
- </body>
-</html>
« no previous file with comments | « chrome/test/data/devtools/image.png ('k') | chrome/test/data/devtools/resource_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698