RetroZilla/parser/htmlparser/tests/html/bug9536.html

39 lines
610 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<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>