tor-browser

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

first-letter-001-ref.html (516B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <title>CSS Reference File</title>
      6  <link rel="author" title="Florian Rivoal" href="mailto:florian@rivoal.net">
      7  <style>
      8  div {
      9    font-size: 50px;
     10    position: absolute;
     11    left: 30px;
     12    top: 50px;
     13  }
     14  div span {
     15    color: green;
     16    background: green;
     17    float: left;
     18  }
     19  </style>
     20 </head>
     21 <body>
     22  <p>Test passes if there is a <strong>filled green rectangle</strong> and <strong>no red</strong>.</p>
     23  <div><span>a</span></div>
     24 </body>
     25 </html>