tor-browser

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

multicol-width-invalid-001.xht (1325B)


      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: invalid column-width</title>
      5   <link rel="author" title="Opera Software ASA" href="http://www.opera.com/" />
      6   <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2013-08-23 -->
      7   <link rel="help" href="https://www.w3.org/TR/css-multicol-1/#cw" title="3.1. 'column-width'" />
      8   <link rel="match" href="multicol-width-invalid-001-ref.xht" />
      9   <meta name="flags" content="ahem invalid" />
     10   <meta name="assert" content="This test checks that 'column-width: bzzt' is invalid (generating a parsing error) and therefore will be ignored." />
     11   <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     12   <style type="text/css"><![CDATA[
     13   div
     14   {
     15   background-color: yellow;
     16   border: gray solid 1em;
     17   color: black;
     18   font: 1.25em/1 Ahem;
     19   width: 12em;
     20 
     21   column-gap: 0;
     22   column-width: bzzt; /* this value is invalid */
     23   }
     24 
     25   span {color: blue;}
     26   ]]></style>
     27  </head>
     28  <body>
     29  <p>This test passes is it is idential to the reference.</p>
     30   <div>
     31   bl ac
     32     <span>
     33     bl ue
     34     </span>
     35     <span>
     36     bl ue
     37     </span>
     38   bl ac
     39   </div>
     40  </body>
     41 </html>