﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
6461	BIDI: Paragraph alignment lost when switching list to paragraph	Damian	Sa'ar Zac Elias	"When a list is unset, the paragraph alignment for each list item is lost. 

To reproduce:
 1. 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>
}}}

 2. 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>
}}}
 3. 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>
}}}

"	Bug	closed	Normal	CKEditor 3.4.2	General		fixed	IBM	joek Satya Minnekanti james c
