tor-browser

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

video-paint-order.html (571B)


      1 <!DOCTYPE html>
      2 <title>Video paint order</title>
      3 <link rel="author" title="Philip Rogers" href="pdr@chromium.org">
      4 <link rel="help" href="https://www.w3.org/TR/CSS2/zindex.html">
      5 <link rel="match" href="video-paint-order-ref.html">
      6 <style>
      7  video {
      8    background: red;
      9    width: 95px;
     10    height: 95px;
     11  }
     12  #negative-margin {
     13    display: inline-block;
     14    width: 100px;
     15    height: 100px;
     16    background: green;
     17    margin-left: -100px;
     18  }
     19 </style>
     20 <video></video>
     21 <!-- #negative-margin should paint fully on top of the video. -->
     22 <div id="negative-margin"></div>