#6461 closed Bug (fixed)
BIDI: Paragraph alignment lost when switching list to paragraph
Reported by: | Damian | Owned by: | Sa'ar Zac Elias |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.4.2 |
Component: | General | Version: | |
Keywords: | IBM | Cc: | joek, Satya Minnekanti, james, c |
Description
When a list is unset, the paragraph alignment for each list item is lost.
To reproduce:
- Create the following sample content:
<p>Paragraph 1</p> <p style="text-align: center;">Paragraph 2</p> <p style="text-align: right;">Paragraph 3</p>
- Select the paragraphs and click list button to make a list
At this stage the markup is:
<ul> <li>Paragraph 1</li> <li style="text-align: center;">Paragraph 2</li> <li style="text-align: right;">Paragraph 3</li> </ul>
- Select the list and click list button again to undo list
Result:
<p>Paragraph 1</p> <p>Paragraph 2</p> <p>Paragraph 3</p>
Expected:
<p>Paragraph 1</p> <p style="text-align: center;">Paragraph 2</p> <p style="text-align: right;">Paragraph 3</p>
Attachments (2)
Change History (9)
comment:1 Changed 14 years ago by
Status: | new → confirmed |
---|
Changed 14 years ago by
Attachment: | 6461.patch added |
---|
comment:2 Changed 14 years ago by
Milestone: | → CKEditor 3.4.2 |
---|---|
Owner: | set to Sa'ar Zac Elias |
Status: | confirmed → review |
comment:3 Changed 14 years ago by
Status: | review → review_failed |
---|
The change must happen around L115 instead of the position in the patch, otherwise it will breaks enterMode = BR.
Changed 14 years ago by
Attachment: | 6461_2.patch added |
---|
comment:4 Changed 14 years ago by
Status: | review_failed → review |
---|
comment:5 Changed 14 years ago by
Status: | review → review_passed |
---|
comment:6 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | review_passed → closed |
Fixed with [5941].
comment:7 Changed 13 years ago by
Cc: | james c added; James removed |
---|
Not much of a bidi thing though.