layout/reftests/bugs/579349-1.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <!DOCTYPE html>
     2 <html>
     3 <body>
     4 <canvas id="c" width="500" height="200"></canvas>
     5 <div style="position:absolute; left:0; top:0; height:100px; width:100%; background:yellow"></div>
     6 <script>
     7 var c = document.getElementById("c");
     8 var ctx = c.getContext("2d");
     9 ctx.fillStyle = "blue";
    10 ctx.fillRect(0, 0, c.width, c.height);
    11 </script>
    12 </body>
    13 </html>

mercurial