tor-browser

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

position-relative-001.html (562B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://crbug.com/1058690">
      3 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      4 <meta name="assert" content="A percent inset resolves against the available size.">
      5 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      6 <div style="width: 100px; height: 100px; background: red;">
      7  <span style="position: relative; top: 100%; left: 100%;">
      8    <div style="width: 100px; height: 100px; background: green; position: relative; top: -100px; left: -100px;"></div>
      9  </span>
     10 </div>