tor-browser

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

object-view-box-property-changed-ref.html (570B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>Changing CSS object-view-box should trigger relayout : ref</title>
      4 <link rel="author" href="mailto:khushalsagar@chromium.org">
      5 <link rel="help" href="https://drafts.csswg.org/css-images-4/#the-object-view-box">
      6 
      7 <style>
      8 div {
      9  margin: 5px;
     10 }
     11 
     12 .container_view_box_subset {
     13  width: 50px;
     14  height: 50px;
     15  overflow: clip;
     16  display: inline-block;
     17 }
     18 .view_box_subset {
     19  position: relative;
     20  top: -50px;
     21 }
     22 </style>
     23 <div class="container_view_box_subset">
     24  <img class="view_box_subset" src="support/exif-orientation-6-ru.jpg"></img>
     25 </div>