summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/manual/compositing/alpha_filter_shadow.html
blob: 1df227ce0b807b6a55befa199c5d9485e482bb7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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.filter = 'sepia(0)';
ctx.fillRect(canvas.width,0,canvas.width,canvas.height);
</script>
</body>