Test name | Executions per second |
---|---|
ownerDocument.defaultView | 1899320.9 Ops/sec |
window.getComputedStyle | 1618832.6 Ops/sec |
<div id="root"><div>
var el = document.getElementById("root");
function getStyle(elem){
return elem.ownerDocument.defaultView.getComputedStyle( elem );
}
function getStyle2(elem){
return window.getComputedStyle( elem );
}
var computedStyle = getStyle(el);
var computedStyle = getStyle2(el);