tor-browser

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

zero-column-width-layout.html (764B)


      1 <!DOCTYPE html>
      2 <title>column-width:0</title>
      3 <meta name="assert" content="column-width:0 is valid as specified and computed value, but its used value may never be less than 1px">
      4 <link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
      5 <link rel="help" href="https://drafts.csswg.org/css-multicol/#cw" title="3.1. column-width">
      6 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
      7 <p>Test passes if there is a filled green square.</p>
      8 <div style="float:left; width:50px; height:100px; column-width:0; column-gap:0;">
      9  <div style="height:5000px; background:green;"></div>
     10 </div>
     11 <div style="float:left; width:50px; height:100px; columns:0; column-gap:0;">
     12  <div style="height:5000px; background:green;"></div>
     13 </div>