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

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

Issue 11630004: DevTools: rename debugger/ to devtools/, move DevTools files into content/renderer/devtools. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: For landing Created 8 years 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: content/browser/debugger/manual_tests/resources/loop-statements.js
diff --git a/content/browser/debugger/manual_tests/resources/loop-statements.js b/content/browser/debugger/manual_tests/resources/loop-statements.js
deleted file mode 100644
index cbb4e0d28db7fd3da02763ef1b6157039b506fa5..0000000000000000000000000000000000000000
--- a/content/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