jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
<canvas id="cnv" width="512" height="512">
</canvas>
<img id="img" src="http://mozilla.org/media/img/firefox/template/header-logo-inverse.png" style="display: none" />
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_offscreenCanvas = createCanvas(1024,1024);
var g_offscreenCanvas2 = createCanvas(1024,1024);
var can2=g_offscreenCanvas2.getContext('2d');
g_offscreenCanvas.getContext('2d').drawImage(g_img, 0, 0);
g_offscreenCanvas.getContext('2d').drawImage(g_img, 100, 100);
g_offscreenCanvas.getContext('2d').drawImage(g_img, 200, 200);
g_offscreenCanvas.getContext('2d').drawImage(g_img, 300, 300);
g_offscreenCanvas.getContext('2d').drawImage(g_img, 400, 400);
Ready to run.
Test | Ops/sec | |
---|---|---|
img |
| ready |
not-in-dom canvas |
| ready |
not-in-dom canvas without sizes |
| ready |
img w/o sizes |
| ready |
test2 |
| ready |
off-2-off |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.