﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
11626	Tableresize sets invalid width	Wiktor Walc	Piotr Jasiun	"When resizing a column to the maximum available width (by shrinking a column next to it), the width of the second column is set to 0, which is an invalid number.

When `0px` is used, the column behaves like it did have width style set at all, while the fact is that user decided to resize it to the minimum.
Setting 1px will preserve a narrow size of the column.

1) The moment of resizing a column

 [[Image(table-resize-cropped.png)]]

2) The second column has width set to 0px

{{{
		<tr>
			<td style=""width: 238px;"">&nbsp;</td>
			<td style=""width: 0px;"">&nbsp;</td>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
}}}
 [[Image(tableresize-0-width.png)]]

3) The second column has width set to 1px

{{{
		<tr>
			<td style=""width: 237px;"">&nbsp;</td>
			<td style=""width: 1px;"">&nbsp;</td>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
}}}
 [[Image(tableresize-1px-width.png)]]"	Bug	closed	Normal	CKEditor 4.4.1	Core : Tables		fixed	HasPatch	
