Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36
Chrome 104
Windows
Desktop
2 years ago
Test name Executions per second
ownerDocument.defaultView 1899320.9 Ops/sec
window.getComputedStyle 1618832.6 Ops/sec
HTML Preparation code:
AخA
 
1
<div id="root"><div>
Script Preparation code:
x
 
var el = document.getElementById("root");
function getStyle(elem){
  return elem.ownerDocument.defaultView.getComputedStyle( elem );
}
function getStyle2(elem){
  return window.getComputedStyle( elem );
}
Tests:
  • ownerDocument.defaultView

     
    var computedStyle = getStyle(el);
  • window.getComputedStyle

     
    var computedStyle = getStyle2(el);