Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36
Chrome 118
Mac OS X 10.15.7
Desktop
one year ago
Test name Executions per second
getComputedStyle 415.1 Ops/sec
getBoundingClientRect 275.4 Ops/sec
HTML Preparation code:
AخA
 
1
<div id="foo"></div>
Tests:
  • getComputedStyle

    x
     
    var i = 5000;
    while (i--) {
        checkDisplay('foo');
    }
    function checkDisplay(id) {
        return window.getComputedStyle(document.getElementById(id), null).getPropertyValue("display") === "none";
    }
  • getBoundingClientRect

     
    var i = 5000;
    while (i--) {
        checkDisplay('foo');
    }
    function checkDisplay(id) {
        return document.getElementById(id).getBoundingClientRect().width === 0;
    }