$sourceCanvas = document.createElement("canvas");
$sourceCanvas.width = 3000;
$sourceCanvas.height = 3000;
$sourceContext = $sourceCanvas.getContext("2d");
$destCanvas = document.createElement("canvas");
$destCanvas.width = 3000;
$destCanvas.height = 3000;
$destContext = $destCanvas.getContext("2d");
$destContext.drawImage($sourceCanvas, 0, 0, 3000, 3000, 0, 0, 300, 300);
// Force the drawImage call to be evaluated within this benchmark code:
createImageBitmap($destCanvas, 0, 0, 1, 1).then(() => deferred.resolve());
$destContext.drawImage($sourceCanvas, 0, 0, 3000, 3000, 0, 0, 900, 900);
// Force the drawImage call to be evaluated within this benchmark code:
createImageBitmap($destCanvas, 0, 0, 1, 1).then(() => deferred.resolve());
$destContext.drawImage($sourceCanvas, 0, 0, 3000, 3000, 0, 0, 3000, 3000);
// Force the drawImage call to be evaluated within this benchmark code:
createImageBitmap($destCanvas, 0, 0, 1, 1).then(() => deferred.resolve());