HTML Preparation code:
AخA
 
1
<div id="foo" data-attr="foo"></div>
Tests:
  • getComputedStyle

    x
     
    var i = 3000;
    while (i--) {
        chekele('foo');
    }
    function chekele(element) {
        return window.getComputedStyle(document.getElementById(element), null).getPropertyValue("display").indexOf('none') === -1;
    }
  • getAttribute

     
    var i = 3000;
    while (i--) {
        chekele('foo');
    }
    function chekele(element) {
        return document.getElementById(element).getAttribute('data-attr');
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    getComputedStyle
    getAttribute

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 months ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0
Firefox 133 on Mac OS X 10.15
View result in a separate tab
Test name Executions per second
getComputedStyle 929.0 Ops/sec
getAttribute 3606.1 Ops/sec