summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/reftest/filters/fillText-with-filter-opacity-1.html
blob: 898a3d9261761dbbcb5445d9971462d5f6adc4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
<canvas id="canvas" width="100" height="100"></canvas>
<script>
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
ctx.fillStyle = "rgb(0,128,0)";
ctx.filter = "opacity(0.5)";
ctx.font = "20px serif";
ctx.fillText("Hello world", 0, 50);
</script>
</body></html>