layout/reftests/bugs/690643-1-ref.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     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