summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/reftest/filters/fillText-without-shadow-1-ref.html
blob: 5d332e3f09df7c023f68b16870b6ae4eb8e5bf2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!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 = "green";
ctx.font = "20px serif";
ctx.fillText("Hello world", 0, 50);
</script>
</body></html>