HTML Preparation code:
AخA
 
1
<div id="teste">teste</div>
Script Preparation code:
 
var teste_n = '123px';
var _style = window.getComputedStyle(document.getElementById('teste'));
var el = document.getElementById('teste');
Tests:
  • clientWidth

     
    document.getElementById('teste').clientWidth;
  • offsetwidth

     
    document.getElementById('teste').offsetwidth;
  • window.getComputedStyle

     
    parseFloat(_style['width'])
  • BoundingClientRect

     
    el.getBoundingClientRect()
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    clientWidth
    offsetwidth
    window.getComputedStyle
    BoundingClientRect

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Chrome 108 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
clientWidth 1829593.9 Ops/sec
offsetwidth 9064632.0 Ops/sec
window.getComputedStyle 1170574.9 Ops/sec
BoundingClientRect 1549144.4 Ops/sec