fixed-table-layout-002-ref.html (762B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 2 <html> 3 <head> 4 <title>CSS Reftest Reference</title> 5 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> 6 <link rel="author" title="Adapted for vertical layout by Simon Montagu" href="http:/mozilla.org/"> 7 <style type="text/css"> 8 .test { writing-mode: vertical-lr; } 9 div.stripe 10 { 11 width: 24px; 12 height: 100px; 13 } 14 div.blue {background-color: blue;} 15 div.black {background-color: black;} 16 </style> 17 </head> 18 <body> 19 <p>Test passes if the boxes below are the same height.</p> 20 <div class="test"> 21 <div class="black stripe"></div> 22 <div class="blue stripe"></div> 23 </div> 24 </body> 25 </html>