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

16 lines
308 B
HTML

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