tor-browser

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

position-relative-with-scrollable-with-abspos-crash.html (839B)


      1 <!DOCTYPE html>
      2 <title>CSS Flexbox: Crash for flex box with relpos with scrollable with abspos</title>
      3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@opera.com">
      4 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#flex-container">
      5 <link rel="help" href="https://drafts.csswg.org/css-overflow-3/#scrollable-overflow">
      6 <link rel="issue" href="https://crbug.com/498969">
      7 <meta name="assert" content="Check that crash doesn't happen in flex box with descendents that include relpos, overflow:auto scrollbars, and abspos.">
      8 
      9 <div style="display:flex;">
     10    <div>
     11        <div style="position:relative; width:5em;">
     12            <div style="overflow:auto;">
     13                <div>xxxxxxxxxxxxxxxxxxxxxx</div>
     14                <div style="position:absolute;"></div>
     15            </div>
     16        </div>
     17    </div>
     18 </div>