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

Side by Side Diff: chrome/test/data/devtools/debugger_test_page.html

Issue 174395: DevTools: Enable devtools sanity tests on Linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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/debugger_test.js ('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
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="debugger_test.js"></script>
4 <script> 3 <script>
5 var lastVal = 5; 4 var lastVal = 5;
6 var result = -1; 5 var result = -1;
7 6
8 function fib(n) { 7 function fib(n) {
9 if (n < 2) { 8 if (n < 2) {
10 return 1; 9 return 1;
11 } else { 10 } else {
12 return fib(n-1) + fib(n-2); 11 return fib(n-1) + fib(n-2);
13 } 12 }
14 } 13 }
15 14
16 function calculate(e) { 15 function calculate(e) {
17 result = fib(lastVal++); 16 result = fib(lastVal++);
18 } 17 }
19 18
20 doSomeWork();
21
22 </script> 19 </script>
23 </head> 20 </head>
24 <body> 21 <body>
25 </body> 22 </body>
26 </html> 23 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/devtools/debugger_test.js ('k') | chrome/test/data/devtools/resource_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698