[Webkit-unassigned] [Bug 24865] New: Indenting in ordered lists creates multiple sublists

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 26 17:49:03 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=24865

           Summary: Indenting in ordered lists creates multiple sublists
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
               URL: http://www.mozilla.org/editor/midasdemo/
        OS/Version: Mac OS X 10.5
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: HTML Editing
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: sullivan at google.com
                CC: eric at webkit.org, jparent at google.com


Steps to reproduce:
1. Go to Midas Demo: http://www.mozilla.org/editor/midasdemo/
2. Set HTML to the following:
<ol><li>one</li><li>two</li><li>three</li></ol>
3. Put cursor in front of "two" and click Indent button.
4. Put cursor in front of "three" and click Indent button.
(Note: can reverse steps 3 and 4, same thing happens)

Actual Result:
List looks like this:
1. one
  1. two
  1. three
Html looks like this (two <ol>s at same level):
<ol><li>one</li><ol><li>two</li></ol><ol><li>three</li></ol></ol>

Expected Result:
List looks like this:
1. one
  1. two
  2. three
Html looks like this (single <ol> contains sublist):
<ol><li>one</li><ol><li>two</li><li>three</li></ol></ol>


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list