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

Side by Side Diff: content/browser/debugger/manual_tests/debugger-execution-while-paused.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 stepOne()
3 {
4 console.log(1);
5 }
6
7 function stepTwo()
8 {
9 alert("Test failed. The second button event still fired.");
10 }
11 </script>
12
13 <p>To test, open the DevTools (Ctrl+Shift+I) and reload the page. Set a break po int inside the stepOne() function.
14 Now click the Step One button in the page. The breakpoint should be hit. While p aused at the breakpoint
15 click on the Step Two button. You should not see an alert dialog. Continue scrip t.</p>
16 <button onclick="stepOne()">Step One</button><br><br>
17 <button onclick="stepTwo()">Step Two</button>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698