tor-browser

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

overflow-img-display-table-ref.html (525B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Verifies img elements are clipped with display:table</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-overflow">
      5 <link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
      6 <style>
      7  .default {
      8    width: 25px;
      9    height: 50px;
     10    border-radius: 2px;
     11    overflow: clip;
     12    border-radius: 2px;
     13  }
     14 </style>
     15 <body>
     16  <div class="default">
     17    <img src="../css-images/support/exif-orientation-6-ru.jpg"></img>
     18  </div>
     19 </body>