| Summary: | weird handling of nested ordered-unordered lists | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Francisco Galera <flgalera> |
| Component: | khtml | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | wishlist | CC: | finex, kybernetikkollektiv |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
<ol>
<li>A</li>
<li>B</li>
<li>C</li>
<li>D</li>
<ol>
<li>E</li>
<li>F</li>
</ol>
<li>G</li>
</ol>
becomes:
1. A
2. B
3. C
4. D
1. E
2. F
3. G
*** This bug has been marked as a duplicate of bug 163014 *** |
Version: (using KDE KDE 3.5.5) Installed from: Debian testing/unstable Packages OS: Linux The file <html> <ol> <ul><li>A</li></ul> <li>1</li> <li>2</li> <ul><li>B</ul> <li>3</li> <li>4</li> <ul><li>C</ul> <li>5 <li>6 <ul><li>D</ul> <li>7 <li>8 </ol> </html> is rendered in konqueror as: * A 2. 1 3. 2 * B 2. 3 3. 4 * C 2. 5 3. 6 * D 4. 7 5. 8 But in Iceweasel (Firefox) is rendered in a "better" way: * A 1. 1 2. 2 * B 3. 3 4. 4 * C 5. 5 6. 6 * D 7. 7 8. 8