tor-browser

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

multicol-span-float-004.html (738B)


      1 <!DOCTYPE html>
      2 <title>Become a spanner without changing column-span</title>
      3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      4 <link rel="help" href="https://issues.chromium.org/issues/422810439">
      5 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      6 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      7 <div style="columns:1; column-fill:auto; height:100px;">
      8  <div style="background:red;">
      9    <div id="e3" style="float:left; column-span:all;">
     10      <div style="width:100px; height:100px; background:green;"></div>
     11    </div>
     12    <div style="clear:both;"></div>
     13  </div>
     14 </div>
     15 <script>
     16  document.body.offsetTop;
     17  e3.style.cssFloat = "none";
     18 </script>