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

Side by Side Diff: content/browser/debugger/manual_tests/debugger-pause-on-else-statements.html

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 unified diff | Download patch
OLDNEW
(Empty)
1 <script>
2 function test()
3 {
4 debugger;
5 }
6
7 if (false)
8 debugger; // This should not be hit.
9 else
10 test();
11 </script>
12
13 <p>To test, open the DevTools (Ctrl+Shift+I) and reload the page. When the debug ger breaks, select the (anonymous function) node
14 in the call stack, you should see the execution line on the call to test().</p>
15 <br><br>
16 Also set a breakpoint on the call to test(), and reload. It should break before the test() function is called.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698