grouping-li-reftest-not-being-rendered.html (710B)
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 <link rel="match" href="grouping-li-reftest-not-being-rendered-ref.html"> 9 10 <p>This test matches if the list displays similar to the following</p> 11 12 <pre>1. A 13 2. B 14 3. D 15 4. E 16 5. G</pre> 17 18 <hr> 19 20 <ol> 21 <li>A</li> 22 <li>B</li> 23 <li hidden>C</li> 24 <li>D</li> 25 <div> 26 <li>E</li> 27 <li hidden>F</li> 28 <li>G</li> 29 </div> 30 </ol>