content/canvas/test/reftest/stroketext-shadow.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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

mercurial