Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE HTML>
2 <html>
3 <body>
4 <div style="opacity:0.999;">
5 <canvas id="c" width="200" height="20" style="position:absolute; top:10.4px; left:0; border:1px solid black"></canvas>
6 </div>
7 <div style="position:absolute; top:10px; left:0; width:200px; height:19px;
8 opacity:0.999; border:1px solid black; border-top:2px solid black; background-color:white"></div>
9 <script>
10 var c = document.getElementById("c");
11 var ctx = c.getContext("2d");
12 ctx.fillStyle = "black";
13 ctx.fillRect(0, 0, 200, 1);
14 </script>
15 </body>
16 </html>