tenfourfox/layout/reftests/canvas/transformed-clip.html

17 lines
343 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<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>