layout/reftests/canvas/802658-1-ref.html

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

     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.shadowBlur=60;
    13 c.shadowColor="blue";
    15 c.fillText("ABCDEFG",100,100);
    19 }
    20 </script>
    21 </head>
    22 <body>
    23 <canvas id="myCanvas" height=400 width=400 style="border:1px solid black"></canvas>
    24 </body>
    25 </html>

mercurial