Sign in
webkit
/
WebKit
/
7394423a1e1e187918fd8e196fa84eccacc8a0c2
/
.
/
ManualTests
/
inspector
/
resources
/
mutate-frame.html
blob: 08fc6561840737b24fb0358d8bee94750daecbe6 [
file
] [
log
] [
blame
]
<script>
var
count
=
1
;
function
run
()
{
var
div
=
document
.
createElement
(
"div"
);
div
.
textContent
=
"Testing "
+
(
count
++);
document
.
body
.
appendChild
(
div
);
}
setInterval
(
run
,
1000
);
</script>