tor-browser

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

position-relative-013.xht (1868B)


      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: Relative positioning with top and bottom do not change element dimensions</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-07-09 -->
      7         <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#relative-positioning" title="9.4.3 Relative positioning" />
      8 		<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
      9 
     10         <meta name="assert" content="Relatively positioned element dimensions are not changed with top/bottom applied. If 'top' is 'auto' and if 'bottom' is '100px', then top's used value becomes the negative of bottom. If both 'top' and 'bottom' are specified (like for #div3 in this test), then 'bottom' is ignored and the used value of 'bottom' becomes minus the value of 'top')." />
     11         <style type="text/css">
     12             div
     13             {
     14                 height: 100px;
     15                 position: relative;
     16                 width: 100px;
     17             }
     18             #div1
     19             {
     20                 background-color: red;
     21             }
     22             #div2
     23             {
     24                 background-color: red;
     25                 bottom: 100px;
     26                 top: auto;
     27             }
     28             #div3
     29             {
     30                 background-color: green;
     31                 bottom: 0px;
     32                 top: -200px;
     33             }
     34         </style>
     35     </head>
     36     <body>
     37         <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
     38         <div id="div1"></div>
     39         <div id="div2"></div>
     40         <div id="div3"></div>
     41     </body>
     42 </html>