test123123

Benchmark created by Uuuh on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<input id='doCheck' type="button" onclick="doCheck('mark1'); return false;" value="Mark" />

Test runner

Ready to run.

Testing in
TestOps/sec
test1
              $('#doCheck')
        .css('color', '#666')
        .delay(100)
        .queue(function (next)
        {
            $(this).css('color', '#00ff00');
            next();
        });
ready
test2
$('#doCheck').css('color', '#00ff00');
              setTimeout(function(){
                  $('#doCheck').css('color', '#666');
              },100);
 
ready

Revisions

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