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

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

Issue 151076: DevTools: add Scripts panel sanity test (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/test/data/devtools/debugger_test.js ('k') | webkit/glue/devtools/js/tests.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="debugger_test.js"></script>
4 <script>
5 var lastVal = 5;
6 var result = -1;
7
8 function fib(n) {
9 if (n < 2) {
10 return 1;
11 } else {
12 return fib(n-1) + fib(n-2);
13 }
14 }
15
16 function calculate(e) {
17 result = fib(lastVal++);
18 }
19
20 doSomeWork();
21
22 </script>
23 </head>
24 <body>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/devtools/debugger_test.js ('k') | webkit/glue/devtools/js/tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698