Run details:
Mozilla/5.0 (Linux; Android 11; SM-G985F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36
Chrome Mobile 94
Android
Mobile
3 years ago
Test name Executions per second
createElement 52444.5 Ops/sec
createContextualFragment 49358.5 Ops/sec
HTML Preparation code:
AخA
 
1
<div></div>
Tests:
  • createElement

     
    const div = document.createElement('div')
    div.innerHTML = 'Hello';
    return div.outerHTML;
  • createContextualFragment

     
    const frag = document.createRange().createContextualFragment(`<div>Hello</div>`);
    const domNode = frag.firstElementChild;
    return domNode.outerHTML;