Sign in
webkit
/
WebKit
/
f5cff73c0138e99cbf55df097bc375a3de473a01
/
.
/
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>