summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/manual/compositing/alpha_filter_shadow-ref.html
blob: 3ff0ed291d2ab432ff946a4508a66a4b760fdcb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<body>
<script>
var canvas, ctx;
canvas = document.createElement("canvas");
canvas.width = 100;
canvas.height = 100;
document.body.appendChild(canvas);

ctx = canvas.getContext("2d");
ctx.globalAlpha = 0.5;
ctx.shadowOffsetX = -canvas.width;
ctx.shadowColor = 'red';
ctx.fillRect(canvas.width,0,canvas.width,canvas.height);
</script>
</body>