tor-browser

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

first-letter-skip-marker-ref.html (643B)


      1 <!DOCTYPE HTML>
      2 <title>Reference: The element's own ::marker should be skipped when finding the ::first-letter content</title>
      3 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
      4 <style>
      5 body { margin-left:100px; }
      6 ol > li { list-style-position: inside }
      7 first-letter { color: green }
      8 li:first-child { list-style-type: lower-alpha; list-style-type: '::marker ' }
      9 li:last-child::marker { content: '::marker ' }
     10 </style>
     11 <ol>
     12  <li><first-letter>i</first-letter>tem</li>
     13  <li><first-letter>i</first-letter>tem</li>
     14 </ol>
     15 
     16 <ul>
     17  <li><first-letter>i</first-letter>tem</li>
     18  <li><first-letter>i</first-letter>tem</li>
     19 </ul>