tor-browser

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

auto-position-rtl-child-viewport-scrollbar.html (725B)


      1 <!DOCTYPE html>
      2 <title>Auto-positioned absolutely positioned in static RTL parent, scrollbars on viewport</title>
      3 <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
      4 <link rel="help" href="https://www.w3.org/TR/CSS22/visudet.html#abs-non-replaced-width" title="10.3.7 Absolutely positioned, non-replaced elements">
      5 <link rel="match" href="auto-position-rtl-child-viewport-scrollbar-ref.html">
      6 <style>body { overflow:scroll; }</style>
      7 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      8 <div style="direction:rtl; width:80px; height:80px; border:10px solid green; background:red;">
      9  <div style="position:absolute; width:80px; height:80px; background:green;"></div>
     10 </div>