tor-browser

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

table-visual-layout-004.xht (1226B)


      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: Table row boxes are rendered in source order</title>
      5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6         <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#table-layout" />
      7         <meta name="assert" content="Table row boxes fill the table from top to bottom by the order they occur in the page source." />
      8         <style type="text/css">
      9             td
     10             {
     11                 border: 1px solid black;
     12                 color: blue;
     13                 font-size: 5em;
     14             }
     15         </style>
     16     </head>
     17     <body>
     18         <p>Test passes if the boxes below are numbered one through five, from top-to-bottom.</p>
     19         <table>
     20             <tr>
     21                 <td>1</td>
     22             </tr>
     23              <tr>
     24                 <td>2</td>
     25             </tr>
     26              <tr>
     27                 <td>3</td>
     28             </tr>
     29              <tr>
     30                 <td>4</td>
     31             </tr>
     32              <tr>
     33                 <td>5</td>
     34             </tr>
     35         </table>
     36     </body>
     37 </html>