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);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    ownerDocument.defaultView
    window.getComputedStyle

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
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 on Windows
View result in a separate tab
Test name Executions per second
ownerDocument.defaultView 1899320.9 Ops/sec
window.getComputedStyle 1618832.6 Ops/sec