window.open

Benchmark created on


Setup

function lottaNodes(count) { 
      var parent = document.createElement('div');
    
      for (i = 0; i < count; i++) {
        child = document.createElement('div'); 
        parent.appendChild(child);
    
        parent = child;
      }
    }

Test runner

Ready to run.

Testing in
TestOps/sec
Empty
var x = 'test';
ready
Does it crash
lottaNodes(1000);

window.open('www.google.com', '_self');
ready

Revisions

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