1
0
Fork 0
firefox/layout/reftests/canvas/copy-clip.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
459 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
function test() {
let canvas = document.createElement('canvas');
canvas.width = canvas.height = 200;
let ctx = canvas.getContext('2d');
ctx.globalCompositeOperation = 'copy';
ctx.translate(0, 0);
ctx.rect(0, 0, 100, 100);
ctx.clip();
ctx.fillStyle = '#f00';
ctx.resetTransform();
ctx.fillRect(0, 0, canvas.width, canvas.height);
return canvas;
}
document.body.appendChild(test(0));
</script>
</body>
</html>