summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/reftest/filters/units-off-screen.html
blob: 879e575c1086784730098bf12df05526b5b9fe0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<body>
<script>

var canvas = document.createElement('canvas');
canvas.width = 500;
canvas.height = 500;
canvas.style.width = '100px';
canvas.style.height = '100px';
var ctx = canvas.getContext('2d');

ctx.filter = 'drop-shadow(0 50px black)';
ctx.fillStyle = '#0f0';
ctx.fillRect(125, 125, 250, 200);

document.body.appendChild(canvas);

</script>
</body>
</html>