tor-browser

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

negative-item-margins-crash.html (445B)


      1 <!DOCTYPE html>
      2 <title>min-width: auto, negative margins</title>
      3 <link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org" />
      4 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#min-size-auto" />
      5 <link rel="issue" href="https://crbug.com/1075908" />
      6 
      7 <p>Test passes if it doesn't crash.</p>
      8 
      9 <div style="display: flex">
     10  <div style="flex-basis: 0; margin: -10px;">
     11    <div style="width: 100px"></div>
     12  </div>
     13 </div>