mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 01:40:17 +01:00
39 lines
610 B
HTML
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>
|