repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
ManualTests
/
inspector
/
resources
/
mutate-frame-2.html
blob
9d413b9356258db68162d3c4e2ff01351730105c
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>