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

27 lines
434 B
HTML

<!docytpe html>
<html>
<head>
<meta charset="UTF-8" />
<script>
window.onload=function(){
var c=document.getElementById("myCanvas").getContext("2d");
c.fillStyle = "green";
c.fillRect(0, 0,100,100);
c.fillStyle = "red";
c.globalCompositeOperation = "destination-over";
c.rect(0, 0, 100, 100);
c.clip();
c.fillRect(0, 0, 100, 100);
}
</script>
</head>
<body>
<canvas id="myCanvas" height=50 width=100></canvas>
</body>
</html>