grouping-li-reftest-list-owner-ol.html (943B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>list owner is calculated to be narest ancestor ol if it exists</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-list-owner-ol-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. C 15 4. D 16 5. E 17 1. F 18 2. G 19 6. H 20 1. I 21 2. J 22 1. K 23 2. L</pre> 24 25 <hr> 26 27 <ol> 28 <li>A</li> 29 <li>B</li> 30 <div> 31 <li>C</li> 32 <span> 33 <li>D</li> 34 <li>E</li> 35 </span> 36 <ol> 37 <li>F</li> 38 <li>G</li> 39 </ol> 40 </div> 41 <li>H</li> 42 <ol> 43 <li>I</li> 44 <li> 45 J 46 <ol> 47 <li>K</li> 48 <li>L</li> 49 </ol> 50 </li> 51 </ol> 52 </ol>