tor-browser

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

marker-and-other-pseudo-elements-ref.html (500B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Test: ::marker interaction with ::before, ::after, and ::first-letter pseudo elements reference file</title>
      6 <link rel="author" title="Daniel Bates" href="mailto:dbates@webkit.org">
      7 <style>
      8 li {
      9    color: green;
     10    font-size: 20px;
     11 }
     12 
     13 .first-letter {
     14    color: white;
     15    background-color: green;
     16 }
     17 </style>
     18 </head>
     19 <body>
     20 <ol>
     21    <li><span class="first-letter">P</span>ASSED if the list marker is green.</li>
     22 </ol>
     23 </body>
     24 </html>