blob: 82e39f995ecc69419a13adc490ff4f0d0a713935 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>list owner is calculated to be nearest ancestor ul or ul (but not dir) if it exists</title>
<link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me">
<link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#ordinal-value">
<link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#list-owner">
<link rel="match" href="grouping-li-reftest-list-owner-mixed-ref.html">
<style>
li {
list-style-type: decimal;
}
.list-item {
display: list-item;
list-style-type: decimal;
}
</style>
<p>This test matches if the list displays similar to the following</p>
<pre>1. A
2. B
3. C
4. D
5. E
1. F
2. G
6. H
1. I
2. J
3. K
4. L</pre>
<hr>
<ul>
<li>A</li>
<li>B</li>
<div>
<li>C</li>
<span>
<li>D</li>
<li>E</li>
</span>
<ol>
<li>F</li>
<span class="list-item">G</span>
</ol>
</div>
<li>H</li>
<ol>
<li>I</li>
<li>
J
<dir>
<li>K</li>
<li>L</li>
</dir>
</li>
</ol>
</ul>