tor-browser

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

table-anonymous-block-013.xht (2438B)


      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: The anonymous box around a table as a 'block' box</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#model" />
      7         <meta name="assert" content="The anonymous box around a table is a 'block' box if the table is block-level." />
      8         <style type="text/css">
      9             #div1
     10             {
     11                 color: silver;
     12             }
     13             #table
     14             {
     15                 background: orange;
     16                 color: orange;
     17                 display: table;
     18             }
     19             #caption
     20             {
     21                 background: blue;
     22                 color: blue;
     23                 display: table-caption;
     24             }
     25             #tr
     26             {
     27                 display: table-row;
     28             }
     29             #td
     30             {
     31                 display: table-cell;
     32             }
     33         </style>
     34     </head>
     35     <body>
     36         <p>Test passes if the blue box is stacked on top of the orange box, the boxes do not take up the whole width of the page, and there is "Filler Text" above and below the boxes.</p>
     37         <div id="div1">Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text
     38             Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text
     39             Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text
     40             <div id="table">
     41                 <div id="caption">Filler Text Filler Text</div>
     42                 <div id="tr">
     43                     <div id="td">Filler Text Filler Text</div>
     44                 </div>
     45             </div>
     46             Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text
     47             Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text
     48             Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text
     49             Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text Filler Text
     50         </div>
     51     </body>
     52 </html>