mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|