tor-browser

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

content-050-ref.html (331B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5 table:before {
      6 	content: "1";
      7 }
      8    table {
      9        color: green;
     10        border: 2px solid black;
     11    }
     12 </style>
     13 <body>
     14 <p>Test passes if the number "1" appears in the box below.</p>
     15 <table>
     16     <tr>
     17         <td></td>
     18     </tr>
     19 </table>
     20 </body>