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

Unified Diff: chrome/browser/debugger/manual_tests/debugger-pause-on-for-in-statements.html

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/debugger-pause-on-for-in-statements.html
diff --git a/chrome/browser/debugger/manual_tests/debugger-pause-on-for-in-statements.html b/chrome/browser/debugger/manual_tests/debugger-pause-on-for-in-statements.html
deleted file mode 100644
index 79f7983174a0eb8e4062e73f343b84ea3cafdd4a..0000000000000000000000000000000000000000
--- a/chrome/browser/debugger/manual_tests/debugger-pause-on-for-in-statements.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<script>
-function test()
-{
- debugger;
-}
-
-var object = { test: 1 };
-
-for (var property in object)
- test();
-</script>
-
-<p>To test, open the DevTools (Ctrl+Shift+I) and reload the page. When the debugger breaks, select
-the (anonymous function) node in the call stack, you should see the execution line on the call to test().
-<br><br>
-Also set a breakpoint on the call to test(), and reload. It should break before the test() function is called.

Powered by Google App Engine
This is Rietveld 408576698