Test name | Executions per second |
---|---|
Creation with src | 6052.7 Ops/sec |
Creation without src | 264909.7 Ops/sec |
Clone with src | 4786.9 Ops/sec |
Clone without src | 357631.4 Ops/sec |
function makeImage( src ) {
var img = document.createElement( 'img' );
img.className='nail';
if ( src ) {
img.src='data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=';
}
return img;
}
withSrc = makeImage( true );
withoutSrc = makeImage( false );
makeImage( true );
makeImage( false );
withSrc.cloneNode();
withoutSrc.cloneNode();