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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 function fib(n) {
5 return n < 2 ? 1 : fib(n - 1) + fib(n - 2);
6 }
7
8 function eternal_fib() {
9 console.profile();
10 for (var i = 0; i < 50; ++i) {
11 fib(20);
12 }
13 console.profileEnd();
14 }
15
16 function load() {
17 // Let the page do initial rendering, then go.
18 setTimeout(eternal_fib, 200);
19 }
20 </script>
21 </head>
22 <body onload="load()">
23 </body>
24 </html>
OLDNEW
« 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