tor-browser

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

multi-line-column-flex-fragmentation-047.html (1447B)


      1 <!DOCTYPE html>
      2 <title>
      3  Multi-line column flex fragmentation: Tall margins with forced break and
      4  vertical writing-mode.
      5 </title>
      6 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#pagination">
      7 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      8 <style>
      9  #flex {
     10    display: flex;
     11    flex-direction: column;
     12    flex-wrap: wrap;
     13    block-size: 500px;
     14    position: relative;
     15  }
     16  #flex > div {
     17    background: green;
     18    inline-size: 10px;
     19  }
     20 </style>
     21 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     22 <div style="writing-mode: vertical-rl;">
     23  <div style="inline-size: 100px; block-size: 100px; columns: 5; column-gap: 0; column-fill: auto; background: red;">
     24    <div id="flex">
     25      <div style="block-size: 50px;"></div>
     26      <div style="block-size: 50px; margin-right: 100px; break-before: column;"></div>
     27      <div style="block-size: 200px; margin-right: 50px;"></div>
     28      <div style="block-size: 50px; background: white;"></div>
     29      <div style="block-size: 50px; margin-right: 100px; break-before: column;"></div>
     30      <div style="block-size: 200px; margin-right: 50px;"></div>
     31      <div style="position: absolute; block-size: 150px; right: 50px;"></div>
     32      <div style="position: absolute; block-size: 200px; top: 10px;"></div>
     33      <div style="position: absolute; block-size: 50px; inline-size: 20px; right: 250px;"></div>
     34    </div>
     35  </div>
     36 </div>