Bug 1942415: Revert changes for GC_GLEAN_SLOW_PHASE and GC_GLEAN_SLOW_TASK probes...
[gecko.git] / layout / reftests / canvas / 802658-1.html
blob20aeb9b55483d97f1f162a6a3eb6f4b900de51b7
1 <!docytpe html>
2 <html>
3 <head>
4 <meta charset="UTF-8" />
5 <script>
6 window.onload=function(){
8 var c=document.getElementById("myCanvas").getContext("2d");
10 c.font="35px sans-serif";
12 c.translate(100,100);
13 c.shadowBlur=60;
14 c.shadowColor="blue";
16 c.fillText("ABCDEFG",0,0);
21 </script>
22 </head>
23 <body>
24 <canvas id="myCanvas" height=400 width=400 style="border:1px solid black"></canvas>
25 </body>
26 </html>