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

Unified 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, 6 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/debugger_test.js ('k') | webkit/glue/devtools/js/tests.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« 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