tor-browser

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

first-line-and-marker-ref.html (654B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8" />
      3 <title>CSS Reftest Reference</title>
      4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com" />
      5 <style>
      6 span {
      7  background: cyan;
      8 }
      9 .none {
     10  list-style-type: none;
     11 }
     12 .string {
     13  list-style-type: "2. ";
     14 }
     15 .content::marker {
     16  content: "3. ";
     17 }
     18 </style>
     19 <ol class="none">
     20  <li><span>1. inside decimal</span></li>
     21  <li><span>2. inside string</span></li>
     22  <li><span>3. inside content</span></li>
     23 </ol>
     24 <ol class="outside">
     25  <li class="decimal"><span>outside decimal</span></li>
     26  <li class="string"><span>outside string</span></li>
     27  <li class="content"><span>outside content</span></li>
     28 </ol>