tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

preserve3d-scale-ref.html (797B)


      1 <!DOCTYPE html>
      2 <!-- This was just "drawn by hand" well after the original test landed to look
      3     like the proper rendering of the test file without any transforms or
      4     preserve3d. It's not identical, but a fuzzy match should be a good test
      5     considering the original test just checked that it wasn't rendering blank
      6 -->
      7 <html>
      8  <style>
      9    div {
     10      position: absolute;
     11      top: 0;
     12      left: 0;
     13    }
     14  </style>
     15 </head>
     16 <body>
     17  <div>
     18    <svg width="600px" height="600px">
     19 
     20      <polygon fill="#DAD6CC" points="57, 51 114, 84 66, 124 10, 91"/>
     21      <ellipse fill="#F8F1E5" cx="62" cy="88" rx="27" ry="19"/>
     22 
     23      <polygon fill="#DAD6CC" points="57, -1 114, 32 66, 72 10, 39"/>
     24      <ellipse fill="#F8F1E5" cx="62" cy="36" rx="27" ry="19"/>
     25 
     26    </svg>
     27  </div>
     28 </body></html>