tor-browser

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

nested-with-too-tall-line.html (639B)


      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-multicol-1/#the-multi-column-model">
      4 <link rel="help" href="https://drafts.csswg.org/css-break/#unforced-breaks">
      5 <link rel="match" href="nested-with-too-tall-line-ref.html">
      6 <style>
      7    .multicol { columns:2; column-fill:auto; }
      8 </style>
      9 <p>The word "PASS" should be seen below, and there should be no red.</p>
     10 <div class="multicol" style="width:100px; height:100px; line-height:200px;">
     11    <div class="multicol" style="height:200px; column-rule:solid red;">
     12        PASS
     13    </div>
     14 </div>