<!--your preparation HTML code goes here-->
const doc = document.createDocumentFragment()
const parser = new DOMParser
let temp
let div
let range
let html = `<div>${'<button>hii</button>'.repeat(200)}</div>`
function go(parseMode) {
switch (parseMode) {
case 'DOMParser':
var element = document.adoptNode(parser.parseFromString(html, 'text/html').body.firstElementChild)
break
case 'write': {
let doc = document.implementation.createHTMLDocument()
doc.write(html)
var element = document.adoptNode(doc.body.firstElementChild)
}
break
case 'setHTMLUnsafe': {
temp ??= document.createElement('template')
temp.setHTMLUnsafe(html)
var element = document.adoptNode(temp.content.firstElementChild)
}
break
case 'innerHTML': {
div ??= document.createElement('div')
div.innerHTML = html
var element = div.removeChild(div.firstElementChild)
}
break
case 'createHTMLDocument': {
let n = document.implementation.createHTMLDocument()
n.body.innerHTML = html
var element = document.adoptNode(n.body.firstElementChild)
}
break
case 'createRange':
var element = document.adoptNode((range ??= document.createRange()).createContextualFragment(html).firstElementChild)
break
case 'template': {
temp ??= document.createElement('template')
temp.innerHTML = html
var element = document.adoptNode(temp.content.firstElementChild)
}
break
case 'parseHTMLUnsafe':
var element = document.adoptNode(Document.parseHTMLUnsafe(html).body.firstElementChild)
break
}
return element
}
go('DOMParser')
go('write')
go('setHTMLUnsafe')
go('innerHTML')
go('createHTMLDocument')
go('createRange')
go('template')
go('parseHTMLUnsafe')
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
DOMParser | |
write | |
setHTMLUnsafe | |
innerHTML | |
createHTMLDocument | |
createRange | |
template | |
parseHTMLUnsafe |
Test name | Executions per second |
---|---|
DOMParser | 12688.2 Ops/sec |
write | 6134.0 Ops/sec |
setHTMLUnsafe | 5843.3 Ops/sec |
innerHTML | 13917.3 Ops/sec |
createHTMLDocument | 10195.1 Ops/sec |
createRange | 6770.5 Ops/sec |
template | 6101.8 Ops/sec |
parseHTMLUnsafe | 5748.3 Ops/sec |
The benchmark defined in the JSON provided is designed to evaluate various methods of parsing HTML strings in JavaScript. Each method is compared based on the number of executions per second, which gives an indication of performance and efficiency. The benchmark uses several approaches, each with its own underlying behavior and potential advantages or drawbacks.
DOMParser:
DOMParser
API to convert a string of HTML into a DOM Document.write:
document.implementation.createHTMLDocument()
and the write()
method to parse the HTML.write()
can be less efficient as it forces a re-parsing of the entire document structure.setHTMLUnsafe:
template
element directly.innerHTML:
innerHTML
property of a div
element to the HTML string.createHTMLDocument:
write
, it creates a new HTML document and sets its body’s inner HTML.createRange:
Range
object to create a contextual fragment from the HTML string.template:
<template>
element to temporarily hold the HTML before accessing its content.parseHTMLUnsafe:
innerHTML
, setHTMLUnsafe
, and parseHTMLUnsafe
where user-generated content can be directly parsed. Developers must be cautious to avoid introducing vulnerabilities.Beyond the methods tested, alternate approaches include:
$.parseHTML()
, which can abstract some complexities and enhance cross-browser compatibility.In conclusion, the choice of parsing method can be driven by specific needs related to performance, security, and ease of use, and each approach presents trade-offs that should be carefully evaluated based on the application's requirements.