tor-browser

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

position-relative-006.html (555B)


      1 <!DOCTYPE html>
      2 <meta name="assert" content="This ensures that a relative-positioned element inset doesn't resolve against an indefinite size.">
      3 <link rel="help" href="https://drafts.csswg.org/css-position-3/#relpos-insets">
      4 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      5 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      6 <div style="width: 100px; min-height: 100px; background: red;">
      7  <div style="width: 100px; height: 100px; background: green; top: -10000%; position: relative;"></div>
      8 </div>