tor-browser

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

transform-003.html (871B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://www.w3.org/TR/css-break-3/#transforms">
      4 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      5 <style>
      6  .relpos {
      7      position: relative;
      8      left: -60px;
      9      top: -50px;
     10      background: green;
     11  }
     12 </style>
     13 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     14 <div style="inline-size:100px; block-size:100px; columns:4; column-fill:auto; column-gap:0; background:red;">
     15  <div style="block-size:50px; background:green;"></div>
     16  <div style="will-change:transform; transform:translate(60px, 50px);">
     17    <div class="relpos" style="block-size:100px;"></div>
     18    <div class="relpos" style="block-size:100px;"></div>
     19    <div class="relpos" style="block-size:150px;"></div>
     20  </div>
     21 </div>