tor-browser

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

mixed-containing-blocks-crash.html (682B)


      1 <!DOCTYPE html>
      2 <title>CSS Flexbox: Mixed containing blocks</title>
      3 
      4 <link rel="help" href="https://drafts.csswg.org/css-flexbox">
      5 <link rel="help" href="https://github.com/servo/servo/issues/36121">
      6 <meta name="assert" content="This test ensures that flex boxes that establish a containing block for fixed position descendants do not cause a crash when combined with flex items that establish a containing block for absolutely positioned descendants.">
      7 
      8 <html>
      9    <div class="box" style="display: flex; flex-direction: column; transform: translateX(1px)">
     10      <div style="position: relative;"><div>Three</div><div style="position: absolute">fixed</div></div>
     11    </div>
     12 </div>