tor-browser

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

inline-skipping-fragmentainer-002.html (1173B)


      1 <!DOCTYPE html>
      2 <title>SPAN in empty fragmentainer</title>
      3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      4 <link rel="help" href="https://issues.chromium.org/issues/40287080">
      5 <meta name="assert" content="The SPAN starts in the first fragmentainer, and ends in the fourth. The second fragmentainer has no inline content, due to a tall float">
      6 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      7 <style>
      8  .ib {
      9    display: inline-block;
     10    vertical-align: top;
     11    width: 100%;
     12    height: 50px;
     13    background: green;
     14  }
     15 </style>
     16 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     17 <div style="columns:4; column-fill:auto; gap:0; width:100px; height:100px; line-height:50px; orphans:1; widows:1; background:red;">
     18  <div style="height:50px; background:green;"></div>
     19  <div style="break-inside:avoid; float:left; width:100%; height:100px; background:green;"></div>
     20  <div>
     21    <span style="position:relative;">
     22      <div class="ib"></div>
     23      <div class="ib"></div>
     24      <div class="ib"></div>
     25      <div class="ib"></div>
     26      <div class="ib"></div>
     27    </span>
     28  </div>
     29 </div>