Opened 14 years ago

Closed 14 years ago

#5390 closed Bug (invalid)

Bullets/Number contents displays across the left justified table

Reported by: Satya Minnekanti Owned by:
Priority: Normal Milestone:
Component: General Version: 3.2
Keywords: IBM Cc: joek, Damian

Description

To reproduce the defect

  1. Open Ajax sample and input some lines of text
  1. Select all the lines of text, and click on "Bullets/Numbers" icon
  1. Keep the cursor before the beginning of the Numbered/Bulleted list, and click on Table icon.
  1. Select Left Alignment for Alignment in Table Properties dialog and click "Ok" button

Expected Result:

Table is inserted Correctly.

Actual Result:

Bullets/Numbers contents displays across the Table

Attachments (1)

Left Aligned Table Error with Lists.doc (23.5 KB) - added by Satya Minnekanti 14 years ago.

Download all attachments as: .zip

Change History (2)

Changed 14 years ago by Satya Minnekanti

comment:1 Changed 14 years ago by Alfonso Martínez de Lizarrondo

Milestone: CKEditor 3.3
Resolution: invalid
Status: newclosed

That's the rendering (yes, quite unexpected) of lists besides floated elements. You can test it with a static page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
	"http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<title>test</title>
</head>
<body>
<table align="left" border="1" cellpadding="1" cellspacing="1" style="width: 200px;">
	<tbody>
		<tr>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
		</tr>
		<tr>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
		</tr>
		<tr>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
		</tr>
	</tbody>
</table>
<ul>
	<li>
		line 1</li>
	<li>
		line 2</li>
	<li>
		line 3</li>
</ul>


</body>
</html>
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy