[Webkit-unassigned] [Bug 24870] New: Multi-line bulleted list doesn't properly indent

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 26 19:31:40 PDT 2009


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

           Summary: Multi-line bulleted list doesn't properly indent
           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. Enter the following HTML
<ul><li>one<br>two<br>three</li></ul>
-OR-
<ul><li>one<p>two</p><p>three</p></li></ul>
3. Select lines "two" and "three"
4. Hit Outdent button.

Actual result:
List turns into this:
    * two
    * three
  * one
HTML:
<ul><ul><li>two</li><li>three</li></ul><li>one<br></li></ul>

Expected result:
"two" and "three" outdented like this:
* one
    * two
    * three
HTML:
<ul><li>one</li><ul><li>two</li><li>three</li></ul></ul>


-- 
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