summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/reftest/filters/fillText-with-shadow-2.html
blob: 17975bf37ccc6cf0d500bf3835b190cb15b45b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<canvas id="canvas" width="100" height="100"></canvas>
<script>
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
ctx.globalAlpha = 0.5;
ctx.shadowColor = "black";
ctx.shadowBlur = 2;
ctx.fillStyle = "green";
ctx.font = "20px serif";
ctx.fillText("Hello world", 0, 50);
</script>
</body></html>