Ticket #3255 (closed Bug: fixed)
List across table cells incorrect
| Reported by: | garry.yao | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | General | Version: | |
| Keywords: | Cc: |
Description
Reproducing Procedures
- Open the replace by class example page;
- Make the following content with the selection by click and drag over table cells;
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr> ^<td> text</td> </tr> <tr> <td> text</td>^ </tr> </tbody> </table>
- Click on 'Numbered List' to apply list style;
- Actual Result:
<ol> <li> text<br /> </li> </ol> <ol> <li> text<br /> </li> </ol> <ol> <li> <p> </p> </li> <li> <p> </p> </li> </ol> <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> </tbody> </table>
- Expected Result:
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr> <td> <ul> <li>text</li></ul> </td> </tr> <tr> <td> <ul> <li>text</li></ul> </td> </tr> </tbody> </table>
- Actual Result:
Change History
Note: See
TracTickets for help on using
tickets.

WFM with the latest trunk in FF3. Can you confirm it?