tor-browser

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

downscale-moz-icon-1.html (475B)


      1 <!DOCTYPE html>
      2 <!-- Any copyright is dedicated to the Public Domain.
      3   - http://creativecommons.org/publicdomain/zero/1.0/ -->
      4 <html>
      5 <head>
      6  <meta charset="utf-8" />
      7  <title>Testcase for downscaling moz-icon images (bug 1261964)</title>
      8  <style>
      9    body { margin: 0; }
     10    .downscale {
     11      transform-origin: 0 0;
     12      transform: scale(0.9);
     13    }
     14  </style>
     15 </head>
     16 <body>
     17  <img class="downscale" src="moz-icon://bogus-unrecognized-icon?size=100">
     18 </body>
     19 </html>