tor-browser

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

multicol-overflow-000.xht (1555B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Multi-column Layout Test: multi-column with set height causing overflow outside (basic)</title>
      5   <link rel="author" title="Hakon Wium Lie" href="mailto:howcome@opera.com" />
      6   <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2013-08-25 -->
      7   <link rel="help" href="http://www.w3.org/TR/css3-multicol/#pagination-and-overflow-outside-multicol" title="8.2. Pagination and overflow outside multicol elements" />
      8   <link rel="match" href="multicol-overflow-000-ref.xht" />
      9   <meta name="flags" content="ahem" />
     10   <meta name="assert" content="This test checks that column gap appears between two columns." />
     11   <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     12   <style type="text/css"><![CDATA[
     13   div, table
     14   {
     15   background-color: yellow;
     16   color: lime;
     17   font: 1.25em/1 Ahem;
     18   margin: 1em 0;
     19   }
     20 
     21   div
     22   {
     23   columns: 2;
     24   column-fill: balance;
     25   column-gap: 0px;
     26   height: 2em;
     27   width: 20em;
     28   }
     29 
     30   table
     31   {
     32   border-right: lime solid 1em;
     33   border-spacing: 0px;
     34   table-layout: fixed;
     35   width: 21em;
     36   }
     37 
     38   td {padding: 0em;}
     39   ]]></style>
     40  </head>
     41  <body>
     42 
     43   <p>Test passes if the 2 horizontal bars are <strong>identical</strong>.</p>
     44 
     45   <div id="test">A<br />B<br />C<br />D<br />E<br />F</div>
     46 
     47   <table id="reference"><tr><td>G<br />H</td><td>I<br />J</td></tr></table>
     48 
     49  </body>
     50 </html>