layout/reftests/bugs/602200-3.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!DOCTYPE HTML>
     2 <html>
     3 <body>
     4 <div style="-moz-transform:translate(0.4px); position:absolute; top:0px;">
     5   <canvas style="margin-left:0.4px; border:1px solid black; display:block" width="10" height="10" id="c"></canvas>
     6 </div>
     7 <div style="position:absolute; top:0px; width:12px; height:12px; background:black;"></div>
     8 <script>
     9 var c = document.getElementById("c");
    10 var ctx = c.getContext('2d');
    11 ctx.fillStyle = "black";
    12 ctx.fillRect(0, 0, c.width, c.height);
    13 </script>
    14 </body>
    15 </html>

mercurial