| Index: chrome/test/data/devtools/debugger_test_page.html
|
| ===================================================================
|
| --- chrome/test/data/devtools/debugger_test_page.html (revision 0)
|
| +++ chrome/test/data/devtools/debugger_test_page.html (revision 0)
|
| @@ -0,0 +1,26 @@
|
| +<html>
|
| + <head>
|
| + <script src="debugger_test.js"></script>
|
| + <script>
|
| +var lastVal = 5;
|
| +var result = -1;
|
| +
|
| +function fib(n) {
|
| + if (n < 2) {
|
| + return 1;
|
| + } else {
|
| + return fib(n-1) + fib(n-2);
|
| + }
|
| +}
|
| +
|
| +function calculate(e) {
|
| + result = fib(lastVal++);
|
| +}
|
| +
|
| +doSomeWork();
|
| +
|
| + </script>
|
| + </head>
|
| + <body>
|
| + </body>
|
| +</html>
|
|
|
| Property changes on: chrome\test\data\devtools\debugger_test_page.html
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|