tor-browser

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

absolute-non-replaced-max-height-007.xht (2046B)


      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: Max-height on absolutely positioned, non-replaced elements, shrink-to-fit solve for top</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-29 -->
      7         <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-height" />
      8 		<link rel="match" href="absolute-non-replaced-max-height-007-ref.xht" />
      9 
     10         <meta name="flags" content="ahem" />
     11         <meta name="assert" content="The height is based on the overall height of the content, 'margin-top', 'auto' is set to '0' and solve for 'top', when 'top' and 'height' are both 'auto' and 'bottom' is not 'auto'." />
     12         <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     13         <style type="text/css">
     14             #div1
     15             {
     16                 font: 100px/1 Ahem;
     17                 height: 400px;
     18                 position: relative;
     19                 width: 100px;
     20             }
     21             #div2
     22             {
     23                 background: orange;
     24                 height: 50px;
     25                 position: relative;
     26                 top: 50px;
     27                 width: 100px;
     28             }
     29             #div3
     30             {
     31                 background: blue;
     32                 bottom: 300px;
     33                 height: auto;
     34                 margin-bottom: auto;
     35                 margin-top: auto;
     36                 max-height: 50px;
     37                 position: absolute;
     38                 top: auto;
     39                 width: 50px;
     40             }
     41         </style>
     42     </head>
     43     <body>
     44         <p>Test passes if the blue and orange squares have the <strong>same height</strong>.</p>
     45         <div id="div1">
     46             <div id="div2"></div>
     47             <div id="div3">&nbsp;</div>
     48         </div>
     49     </body>
     50 </html>