tor-browser

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

after-inheritable-002-ref.html (410B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5    div {
      6        border: 15px solid blue;
      7        color: green;
      8    }
      9    a {
     10    	border-color: orange;
     11        border-style: solid;
     12    }
     13 </style>
     14 <body>
     15    <p>Test passes if the words "PASS PASS" are green, they are contained within an orange box with thinner lines than the blue box.</p>
     16    <div><a>PASS PASS</a></div>
     17 </body>