tor-browser

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

before-after-011-ref.xht (1061B)


      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   div.table
     13   {
     14   border-spacing: 0;
     15   color: green;
     16   display: table;
     17   }
     18 
     19   div.row {display: table-row;}
     20 
     21   div.cell
     22   {
     23   background-color: white;
     24   border: white solid medium;
     25   display: table-cell;
     26   }
     27   ]]></style>
     28 
     29  </head>
     30 
     31  <body>
     32 
     33   <p>Test passes if the word <strong>PASS appear twice</strong> and if there is no red.</p>
     34 
     35   <div class="table">
     36 
     37     <div class="row">
     38       <div class="cell">P</div>
     39       <div class="cell">A</div>
     40       <div class="cell">S</div>
     41       <div class="cell">S</div>
     42     </div>
     43 
     44     <div class="row">
     45       <div class="cell">P</div>
     46       <div class="cell">A</div>
     47       <div class="cell">S</div>
     48       <div class="cell">S</div>
     49     </div>
     50 
     51   </div>
     52 
     53  </body>
     54 </html>