summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform-3d/1271058-1-ref.html
blob: fc56c22e0a4eb12ab8d057cbbfc85d1de08b9158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<body>
<canvas id="canvas" width="200" height="200"></canvas>
</body>
<script>
    var canvas = document.getElementById("canvas");
    var ctx = canvas.getContext("2d");
    ctx.fillStyle = "green";
    ctx.fillRect(0, 0, 200, 200);
</script>
</html>