remove children (v137)

Revision 137 of this benchmark created by DanMan on


Preparation HTML

<div id='wrap'>
<div id='box'></div>
</div>

Setup

function write()
  {
   var box = document.getElementById('box');
  var div = document.createElement('div');
  div.innerHTML = "halo <br> des <div>aaaa</div><table></table>";
  box.appendChild(div);
  
  }

Test runner

Ready to run.

Testing in
TestOps/sec
remove firstChild
write();
while (box.firstChild) {
  box.removeChild(box.firstChild);
}
ready
set empty innerHTML
write();
box.innerHTML = '';
ready
set empty innerText
write();
box.innerText = '';
ready
Test 1, avoiding repaint
write();
box.style.display='none';
box.innerHTML = '';
box.style.display='';

ready
cloneNode
var dupNode = box.cloneNode(false);
box.parentNode.replaceChild(dupNode, box);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.