tor-browser

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

max-height-applies-to-007.xht (1468B)


      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 applied to elements with 'display' set to 'table-cell'</title>
      5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6         <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height" />
      7         <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#min-max-heights" />
      8         <meta name="flags" content="may" />
      9         <meta name="assert" content="The 'max-height' property applies to elements with 'display' set to 'table-cell'." />
     10         <style type="text/css">
     11             #table
     12             {
     13                 display: table;
     14                 table-layout: fixed;
     15             }
     16             #row
     17             {
     18                 display: table-row;
     19             }
     20             #cell
     21             {
     22                 background: black;
     23                 display: table-cell;
     24                 height: 3in;
     25                 max-height: 1in;
     26                 width: 1in;
     27             }
     28         </style>
     29     </head>
     30     <body>
     31         <p>Test passes if there is a box below.</p>
     32         <!-- If 'max-height' is supported on 'table-cell' then a square will be visible. -->
     33         <div id="table">
     34             <div id="row">
     35                 <div id="cell">&nbsp;</div>
     36             </div>
     37         </div>
     38     </body>
     39 </html>