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