cssText vs. multiple css rules (v23)

Revision 23 of this benchmark created 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>

Setup

var elem = document.getElementById('box');
  var $elem = $('#box');

Test runner

Ready to run.

Testing in
TestOps/sec
set cssText
elem.style.cssText =  'background:#555;color:#FFF;position:absolute;width:300px;height:50px;top:40px;left:90px;';
ready
append cssText
elem.style.cssText += ';width:300px;height:50px;top:40px;left:90px;';
ready
jQuery css({ })
$elem.css({ 'width': 300, 'height': 50, 'top':40, 'left': 90 });
ready
multiple style rules
elem.style.width = '300px';
elem.style.height = '50px';
elem.style.top = '40px';
elem.style.left = '90px';
ready

Revisions

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