blob: fd26b3aa18b6c7912a64aaaeaf8717b983057f8e [file] [edit]
<style>
img {
width: 20px;
height: 20px;
background-color: green;
}
</style>
<div id=container>existing content<br></div>
<script>
for (let i = 0; i < 100; ++i) {
container.appendChild(document.createElement("img"));
container.appendChild(document.createTextNode("some"));
container.appendChild(document.createElement("img"));
container.appendChild(document.createTextNode("and"));
container.appendChild(document.createElement("img"));
container.appendChild(document.createTextNode("text"));
container.appendChild(document.createElement("br"));
document.body.offsetHeight;
}
</script>