tor-browser

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

multicol-rule-double-000.xht (1488B)


      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: column-rule shorthand with 'double' border style</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-27 -->
      7   <link rel="help" href="http://www.w3.org/TR/css3-multicol/#column-rule" title="4.5 'column-rule'" />
      8   <link rel="match" href="multicol-rule-double-000-ref.xht" />
      9   <meta name="flags" content="ahem" />
     10   <meta name="assert" content="Tests that the double value of column-rule-style is correctly rendered when used in the shorthand column-rule property." />
     11   <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     12   <style type="text/css"><![CDATA[
     13   div
     14   {
     15   background-color: black;
     16   color: black;
     17   font: 3.125em/1 Ahem;
     18   margin-bottom: 0.2em;
     19   width: 8.2em;
     20   }
     21 
     22   div#test
     23   {
     24   columns: 2;
     25   column-gap: 0.2em;
     26   column-rule: lime double 0.2em;
     27 
     28   /*
     29 
     30   N == 2;
     31 
     32   W == 200px;
     33 
     34   */
     35 
     36   orphans: 1;
     37   widows: 1;
     38   }
     39 
     40   span {border-left: lime double 0.2em;}
     41   ]]></style>
     42  </head>
     43  <body>
     44 
     45   <p>Test passes if the 2 black stripes with vertical green bars are <strong>identical</strong>.</p>
     46 
     47   <div id="test">1 <br />2 </div>
     48 
     49   <div id="reference">1234<span>5678</span></div>
     50 
     51  </body>
     52 </html>