tor-browser

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

white-space-applies-to-004.xht (1437B)


      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 Test: White-space application to 'display: run-in' element</title>
      5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6         <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#propdef-white-space" />
      7         <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#white-space-prop" />
      8         <meta name="flags" content="ahem" />
      9         <meta name="assert" content="The 'white-space' property applies to 'display: run-in' elements." />
     10         <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     11         <style type="text/css">
     12             div
     13             {
     14                 font: 16px/1em Ahem;
     15             }
     16             #div1
     17             {
     18                 display: run-in;
     19                 white-space: pre;
     20             }
     21             #div2, #div3
     22             {
     23                 background: black;
     24                 display: inline-block;
     25                 height: 1em;
     26                 width: 2em;
     27             }
     28             #div3
     29             {
     30                 margin-left: 3em;
     31             }
     32         </style>
     33     </head>
     34     <body>
     35         <p>Test passes if there are only two boxes below.</p>
     36         <div id="div1">XX   XX</div>
     37         <div id="div2"></div><div id="div3"></div>
     38     </body>
     39 </html>