RetroZilla/parser/htmlparser/tests/html/bug9536.html
2015-10-20 23:03:22 -04:00

39 lines
610 B
HTML

<html>
<head>
<title>List parsing bug</title>
</head>
<body>
The following two sections should look identical
<hr>
Section #1:
<ol>
<ul>
<ol>
<li>This is an ol:ul:ol
<li>This is an ol:ul:ol
</ol>
<li>This is an ol:ul
<li>This is an ol:ul
</ul>
<li>This is an ol
<li>This is an ol
</ol>
<hr>
Section #2:
<ol>
<ul>
<ol>
<li>This is an ol:ul:ol</li>
<li>This is an ol:ul:ol</li>
</ol>
<li>This is an ol:ul</li>
<li>This is an ol:ul</li>
</ul>
<li>This is an ol</li>
<li>This is an ol</li>
</ol>
</body>
</html>