layout/reftests/bugs/690643-1-ref.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 <html>
     2  <head>
     3  </head>
     4 <body>
     5  <canvas id="canvas" width="300" height="300"></canvas>
     6   <script type="application/javascript">
     7     var canvas = document.getElementById("canvas");
     8     var ctx = canvas.getContext("2d");
    10     ctx.fillStyle = '#eeeeee';
    11     ctx.strokeStyle = '#000000';
    13     ctx.beginPath();
    14     ctx.moveTo(0, 50);
    15     ctx.lineTo(50, 50);
    16     ctx.lineTo(150, 100);
    18     ctx.stroke();
    19     ctx.fill();
    20   </script>
    21 </body>
    22 </html>

mercurial