Test name | Executions per second |
---|---|
clodeNode | 466.7 Ops/sec |
createElement | 447.8 Ops/sec |
<head><style>h1 { color: red; }</style></head><body></body>
var head = document.querySelector("head");
var node = document.querySelector("style");
var clone = node.cloneNode({deep: true})
head.appendChild(clone);
var clone = document.createElement("style");
clone.textContent = node.textContent;
head.appendChild(clone);