tor-browser

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

image-object-fit-dyn-1-ref.html (516B)


      1 <!DOCTYPE html>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html>
      7  <head>
      8    <meta charset="utf-8">
      9    <style type="text/css">
     10      embed, img, object, video {
     11        object-fit: cover;
     12        background: red;
     13        width: 50px;
     14        height: 30px;
     15      }
     16    </style>
     17  </head>
     18  <body>
     19    <embed src="500.svg">
     20    <img src="500.svg">
     21    <object data="500.svg"></object>
     22    <video poster="500.svg"></video>
     23  </body>
     24 </html>