tor-browser

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

1322843-1b.html (502B)


      1 <!DOCTYPE html>
      2 <title>Bug 1322843 - Intrinsic width with float</title>
      3 <style>
      4  #outer {
      5    width: -moz-fit-content;
      6    width: fit-content;
      7    background: red;
      8  }
      9  #float {
     10    float: left;
     11    width: 200px;
     12    height: 100px;
     13    background: green;
     14  }
     15  #inner {
     16    width: 200px;
     17    height: 100px;
     18    clear: left;
     19    overflow: hidden; /* to establish block formatting context */
     20    background: green;
     21  }
     22 </style>
     23 <div id="outer">
     24  <div id="float"></div>
     25  <div id="inner"></div>
     26 </div>