Test name | Executions per second |
---|---|
getComputedStyle | 43.9 Ops/sec |
getBoundingClientRect | 66.3 Ops/sec |
<div id="foo">This is a text</div>
var i = 5000;
while (i--) {
checkDisplay('foo');
}
function checkDisplay(id) {
return window.getComputedStyle(document.getElementById(id), null).getPropertyValue("width");
}
var i = 5000;
while (i--) {
checkDisplay('foo');
}
function checkDisplay(id) {
return document.getElementById(id).getBoundingClientRect().width;
}