cssText vs. multiple css rules (v26)

Revision 26 of this benchmark created by dan on


Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

<div id="box" style="background:#555;color:#FFF;position:absolute;left:0;top:0;width:400px;height:100px;"></div>

Test runner

Ready to run.

Testing in
TestOps/sec
cssText
var elem = document.getElementById('box');
elem.style.cssText +=';width:300px;height:50px;top:40px;left:90px;';
ready
cssText 2
var elem = document.getElementById('box');
elem.style.cssText +='width:300px;height:50px;top:40px;left:90px;';
ready
jQuery css({ })
$('#box').css({ 'width': 300, 'height': 50, 'top':40, 'left': 90 });
ready
multiple style rules
var elem = document.getElementById('box');
elem.style.width = '300px';
elem.style.height = '50px';
elem.style.top = '40px';
elem.style.left = '90px';
ready
caching style selector
var elemStyle = document.getElementById('box').style;
elemStyle.width = '300px';
elemStyle.height = '50px';
elemStyle.top = '40px';
elemStyle.left = '90px';
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.