tor-browser

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

containing-block-029-ref.xht (1070B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 
      3 <html xmlns="http://www.w3.org/1999/xhtml">
      4 
      5  <head>
      6 
      7   <title>CSS Reftest Reference</title>
      8 
      9   <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
     10 
     11   <style type="text/css"><![CDATA[
     12   table
     13   {
     14   border-spacing: 0px;
     15   height: 96px;
     16   table-layout: fixed;
     17   width: 96px;
     18   }
     19 
     20   col#first-column {width: 72px;}
     21 
     22   col#second-column {width: 24px;}
     23 
     24   td
     25   {
     26   background-color: blue;
     27   padding: 0px;
     28   }
     29 
     30   tr {height: 72px;}
     31 
     32   tr#twenty-four {height: 24px;}
     33 
     34   td#orange-dot
     35   {
     36   background-color: orange;
     37   vertical-align: top;
     38   }
     39   ]]></style>
     40 
     41  </head>
     42 
     43  <body>
     44 
     45   <p>Test passes if a small orange square (with a black dot in its middle) is in the bottom right corner of the blue square.</p>
     46 
     47   <table>
     48     <col id="first-column"></col><col id="second-column"></col>
     49     <tr><td></td><td></td></tr>
     50     <tr id="twenty-four"><td></td><td id="orange-dot">.</td></tr>
     51   </table>
     52 
     53  </body>
     54 </html>