Test name | Executions per second |
---|---|
Creation with src | 135330.9 Ops/sec |
Creation without src | 2163599.0 Ops/sec |
Clone with src | 146972.9 Ops/sec |
Clone without src | 2435296.5 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();