Bug 145037 - weird handling of nested ordered-unordered lists
Summary: weird handling of nested ordered-unordered lists
Status: RESOLVED DUPLICATE of bug 163014
Alias: None
Product: konqueror
Classification: Applications
Component: khtml (other bugs)
Version First Reported In: unspecified
Platform: Debian testing Linux
: NOR wishlist
Target Milestone: ---
Assignee: Konqueror Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-05-04 17:50 UTC by Francisco Galera
Modified: 2010-09-19 17:41 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed/Implemented In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Francisco Galera 2007-05-04 17:50:39 UTC
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
Comment 1 Patrick 2010-08-14 23:04:20 UTC
<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
Comment 2 FiNeX 2010-09-19 17:41:30 UTC

*** This bug has been marked as a duplicate of bug 163014 ***