tor-browser

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

margin-collapse-020.xht (1548B)


      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: Margin collapsing with the root element</title>
      5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6         <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-08-15 -->
      7         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#collapsing-margins" />
      8 		<link rel="match" href="margin-collapse-020-ref.xht" />
      9 
     10         <meta name="flags" content="ahem image" />
     11         <meta name="assert" content="For HTML pages the html element does not collapse its margins with other elements." />
     12         <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     13         <style type="text/css">
     14             html
     15             {
     16                 background: url('support/margin-collapse-020.png') 0 -1em no-repeat;
     17                 font: 20px/1em Ahem;
     18                 margin-top: 1em;
     19             }
     20             body
     21             {
     22                 margin: 0;
     23             }
     24             div
     25             {
     26                 background: green;
     27                 margin-top: 1em;
     28                 height: 1em;
     29                 width: 5em;
     30             }
     31             p
     32             {
     33                 font: 12pt serif;
     34             }
     35         </style>
     36     </head>
     37     <body>
     38         <div></div>
     39         <p>Test passes if there is <strong>no red</strong>.</p>
     40     </body>
     41 </html>