tor-browser

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

fieldset.html (829B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://www.w3.org/TR/css-break-3/#possible-breaks">
      4 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      5 <style>
      6  fieldset { margin:0; border:none; padding:0; }
      7  .block { break-inside:avoid; height:50px; background:green; }
      8  .fail { background:red; }
      9 </style>
     10 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     11 <div style="columns:2; column-fill:auto; width:100px; height:140px; column-gap:0; overflow:hidden;">
     12  <fieldset>
     13    <div class="block"></div>
     14    <div class="block"></div>
     15    <div class="block"></div>
     16    <div class="block"></div>
     17 
     18    <!-- No room for this - should be clipped: -->
     19    <div class="block fail"></div>
     20  </fieldset>
     21 </div>