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

Unified Diff: chrome/browser/debugger/manual_tests/resources/loop-statements.js

Issue 7274031: Wholesale move of debugger sources to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add OWNERS and DEPS. Created 9 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
Index: chrome/browser/debugger/manual_tests/resources/loop-statements.js
diff --git a/chrome/browser/debugger/manual_tests/resources/loop-statements.js b/chrome/browser/debugger/manual_tests/resources/loop-statements.js
deleted file mode 100644
index cbb4e0d28db7fd3da02763ef1b6157039b506fa5..0000000000000000000000000000000000000000
--- a/chrome/browser/debugger/manual_tests/resources/loop-statements.js
+++ /dev/null
@@ -1,22 +0,0 @@
-var i;
-var a;
-
-function initialize()
-{
- i = false;
-}
-
-function condition()
-{
- return !i;
-}
-
-function increment()
-{
- i = !i;
-}
-
-function statement()
-{
- a = i;
-}

Powered by Google App Engine
This is Rietveld 408576698