tenfourfox/layout/reftests/canvas/transformed-clip.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

17 lines
343 B
HTML

<html>
<body>
<canvas width="500" height="500"></canvas>
<script>
var canvas = document.getElementsByTagName('canvas')[0];
var ctx = canvas.getContext('2d');
ctx.translate(500, 500);
ctx.fillStyle = "red";
ctx.beginPath();
ctx.rect(-250, -250, 50, 50);
ctx.clip();
ctx.fillRect(-500,-500,500,500);
</script>
</body>
</html>