tor-browser

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

anchor-size-in-flex-basis-crash.html (404B)


      1 <!DOCTYPE html>
      2 <title>CSS Anchor Positioning: Crash with anchor functions flex-basis</title>
      3 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1998436">
      4 <style>
      5 #dut1 {
      6  display: flex;
      7 }
      8 #dut2 {
      9  flex-basis: anchor-size(--a width, 10px);
     10 }
     11 #dut3 {
     12  flex-basis: auto;
     13  width: anchor-size(--a width, 10px);
     14 }
     15 </style>
     16 <div id=dut1>
     17  <div id=dut2></div>
     18  <div id=dut3></div>
     19 </div>