tor-browser

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

flex-container-fragmentation-007.tentative.html (650B)


      1 <!DOCTYPE html>
      2 <title>
      3  Contenteditable flex container fragmentation.
      4 </title>
      5 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      6 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
      7 <style>
      8  .multicol {
      9    column-count: 2;
     10    column-fill: auto;
     11    column-gap: 0px;
     12    height: 50px;
     13    width: 100px;
     14  }
     15  .flexbox {
     16    display: flex;
     17    padding-top: 20px;
     18    padding-bottom: 100px;
     19    line-height: 80px;
     20    background-color: green;
     21  }
     22 </style>
     23 <p>Test passes if there is a filled green square.</p>
     24 <div class="multicol">
     25  <div class="flexbox" contenteditable="true"></div>
     26 </div>