Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.77
Chrome 103
Windows
Desktop
2 years ago
Test name Executions per second
createElement 252730.7 Ops/sec
createContextualFragment 216666.7 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;