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

Side by Side Diff: content/browser/debugger/manual_tests/resources/mutate-frame-2.html

Issue 11645015: Revert r173891 - "DevTools: rename debugger/ to devtools/, move DevTools files into content/rendere… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <script>
2 var count = 1;
3 function run() {
4 var div = document.createElement("div");
5 div.textContent = "Testing " + (count++);
6 document.body.appendChild(div);
7 if (count > 10)
8 document.body.removeChild(document.body.firstChild);
9 }
10
11 setInterval(run, 1000);
12 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698