canvas (v56)

Revision 56 of this benchmark created on


Preparation HTML

<canvas id="cnv" width="320" height="240">
</canvas>
<img id="img" src="http://mozilla.org/media/img/firefox/template/header-logo-inverse.png" style="display: none" />

Setup

function createCanvas(w, h) {
    var canvas = document.createElement('canvas');
    canvas.setAttribute('width', w);
    canvas.setAttribute('height', h);
    return canvas;
  }
  
  // globals
  var g_ctx = document.getElementById('cnv').getContext('2d');
  var g_img = document.getElementById('img');
  var g_offscreenCtx = createCanvas(320, 240).getContext('2d');
  
  g_offscreenCtx.drawImage(g_img, 0, 0);

Test runner

Ready to run.

Testing in
TestOps/sec
img
g_ctx.drawImage(g_img, 0, 0);
ready
not-in-dom canvas
g_ctx.drawImage(g_offscreenCtx.canvas, 0, 0, 320, 240, 0, 0, 320, 240);
ready

Revisions

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