summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/reftest/stroketext-shadow-ref.html
blob: 1a77caaaa539612c3d175c033c85d8195e78d0a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!--docytpe html-->
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<script>
window.onload=function(){
c=document.getElementById("myCanvas").getContext("2d");
c.canvas.width=c.canvas.width;
c.font="35px sans-serif";
c.shadowColor="darkblue";
c.shadowBlur=2;
c.strokeText('ABCDEF',20,100);
}
</script>
</head>
<body>
<canvas id="myCanvas" height="500" width="500" style="border:1px solid black"></canvas>

</body></html>