tor-browser

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

inlines-014.xht (1233B)


      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: Inline box model: space taken by images in cells</title>
      5   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
      6   <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-10-26 -->
      7   <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/inline/014.html" type="text/html"/>
      8   <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#inline-boxes" />
      9 
     10   <meta name="flags" content="image"/>
     11   <style type="text/css">
     12    div { background: red; height: 64px; width: 128px; }
     13    table { background: green; width: 100%; padding: 0; border: 0; border-spacing: 0; margin: 0; }
     14    td { padding: 0; border: 0; font-size: 64px; }
     15   </style>
     16  </head>
     17  <body>
     18   <p>Test passes if there is <strong>no red</strong>.</p>
     19   <div>
     20    <table>
     21     <tr>
     22      <td>
     23       <img src="support/1x1-white.png" alt="(image test failed)"/> <!-- this should generate a line box with the height of the cell's line-height -->
     24      </td>
     25     </tr>
     26    </table>
     27   </div>
     28  </body>
     29 </html>