tor-browser

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

grouping-li-reftest-not-being-rendered-ref.html (622B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>List items that are not being rendered do not participate in numbering</title>
      4 <link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me">
      5 <link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#ordinal-value">
      6 <link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#list-owner">
      7 
      8 <p>This test matches if the list displays similar to the following</p>
      9 
     10 <pre>1. A
     11 2. B
     12 3. D
     13 4. E
     14 5. G</pre>
     15 
     16 <hr>
     17 
     18 <ol>
     19  <li value="1">A</li>
     20  <li value="2">B</li>
     21  <li value="3">D</li>
     22  <li value="4">E</li>
     23  <li value="5">G</li>
     24 </ol>