[Webkit-unassigned] [Bug 43166] New: InsertOrderedList does not switch the list type properly when it has an inner list.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jul 28 18:17:27 PDT 2010


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

           Summary: InsertOrderedList does not switch the list type
                    properly when it has an inner list.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Blocker
          Priority: P2
         Component: HTML Editing
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: rniwa at webkit.org
                CC: tony at chromium.org, jparent at google.com,
                    ojan at chromium.org, tkent at chromium.org,
                    enrica at apple.com
            Blocks: 33668


Reproduction steps:
1. Go to http://www.mozilla.org/editor/midasdemo/
2. Type in <ul><li>hello</li><ol><li>world</li></ol><li>webkit</li></ul> in HTML mode.
The HTML is an unordered list with ordered list in the middle.
3. Insert ordered list.

Expected result:
<ol><li>hello</li><ol><li>world</li></ol><li>webkit</li></ol>
(outer list is converted to an ordered list)

Actual result:
<ol><li>hello</li></ol><ul><li>world</li></ul><ol><li>webkit</li></ol>
(outer list is split into two ordered list and inner list is converted to unordered list)

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



More information about the webkit-unassigned mailing list