v1
- by stevejay 8/23/202000
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
$sourceCanvas = document.createElement("canvas");
$sourceCanvas.width = 100;
$sourceCanvas.height = 100;
$sourceContext = $sourceCanvas.getContext("2d");

$destCanvas = document.createElement("canvas");
$destCanvas.width = 200;
$destCanvas.height = 200;
$destContext = $destCanvas.getContext("2d");
delete caserun single casedrag and drop case


ready



$destContext.drawImage($sourceCanvas, 0, 0, 100, 100, 0, 0, 200, 200);
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN