tor-browser

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

image-object-fit-with-background-2-ref.html (627B)


      1 <!DOCTYPE html>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html class="reftest-paged">
      7  <head>
      8    <meta charset="utf-8">
      9    <style type="text/css">
     10      .fakeBackground {
     11        background: salmon;
     12        height: 3in;
     13        width: 32px;
     14      }
     15 
     16      img.test {
     17        width: 32px;
     18        height: 32px;
     19        display: block; /* Required for fragmentation */
     20      }
     21    </style>
     22  </head>
     23  <body>
     24    <div class="fakeBackground"></div>
     25    <img class="test" src="blue-32x32.png">
     26    <div class="fakeBackground"></div>
     27  </body>
     28 </html>