summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/manual_tests/resources/mutate-frame.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/debugger/manual_tests/resources/mutate-frame.html')
-rw-r--r--chrome/browser/debugger/manual_tests/resources/mutate-frame.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/browser/debugger/manual_tests/resources/mutate-frame.html b/chrome/browser/debugger/manual_tests/resources/mutate-frame.html
new file mode 100644
index 0000000..08fc656
--- /dev/null
+++ b/chrome/browser/debugger/manual_tests/resources/mutate-frame.html
@@ -0,0 +1,10 @@
+<script>
+var count = 1;
+function run() {
+ var div = document.createElement("div");
+ div.textContent = "Testing " + (count++);
+ document.body.appendChild(div);
+}
+
+setInterval(run, 1000);
+</script>