Tests:
  • inner

    AخA
     
    const el = document.createElement('div');
    document.documentElement.appendChild(el);
  • fragment

    x
     
    const fragment = document.createDocumentFragment();
    const el = document.createElement('div');
    const heading = document.createElement('h1');
    heading.innerText = 'Heading';
    el.appendChild(heading);
    fragment.appendChild(el);
    document.documentElement.appendChild(fragment);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    inner
    fragment

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36
Chrome 92 on Windows
View result in a separate tab
Test name Executions per second
inner 1006273.0 Ops/sec
fragment 257976.2 Ops/sec