tor-browser

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

fixed-table-layout-006-ref.html (1128B)


      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  div.stripe
      9  {
     10    height: 10px;
     11    width: 100px;
     12  }
     13  div.blue {background-color: blue;}
     14  div.orange {background-color: orange;}
     15  </style>
     16 </head>
     17 <body>
     18    <p>Test passes if all of the blue lines below appear to have the same height.</p>
     19    <div class="blue stripe"></div>
     20    <div class="orange stripe"></div>
     21    <div class="blue stripe"></div>
     22    <div class="orange stripe"></div>
     23    <div class="blue stripe"></div>
     24    <div class="orange stripe"></div>
     25    <div class="blue stripe"></div>
     26    <div class="orange stripe"></div>
     27    <div class="blue stripe"></div>
     28    <div class="orange stripe"></div>
     29    <div class="blue stripe"></div>
     30    <div class="orange stripe"></div>
     31    <div class="blue stripe"></div>
     32 </body>
     33 </html>