﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8813	Cell width is not updated when cells are merged	Teresa Monahan		"To Reproduce:

- Copy the following table into Source view. This is just a standard table with widths applied to all cells in the first row:

{{{
<table border=""1"" cellpadding=""1"" cellspacing=""1"" style=""width: 400px;"">
	<tbody>
		<tr>
			<td style=""width: 100px;"">
				&nbsp;</td>
			<td style=""width: 100px;"">
				&nbsp;</td>
			<td style=""width: 100px;"">
				&nbsp;</td>
			<td style=""width: 100px;"">
				&nbsp;</td>
		</tr>
		<tr>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
			<td>
				&nbsp;</td>
		</tr>
	</tbody>
</table>
}}}

- Switch to wysiwyg mode and select any 2 cells in row 1. Right click and select Cell -> Merge Cells.
- Switch to source view to see the HTML markup for the table.

'''Problem:''' The cell that was merged still has a width of 100px. It should now have a width of 200px i.e. the sum of the widths of the merged cells.


{{{
<table border=""1"" cellpadding=""1"" cellspacing=""1"" style=""width: 400px;"">
	<tbody>
		<tr>
			<td colspan=""2"" rowspan=""1"" style=""width: 100px;"">
				&nbsp;</td>
			<td style=""width: 100px;"">
				&nbsp;</td>
			<td style=""width: 100px;"">
				&nbsp;</td>
		</tr>
		......
	</tbody>
</table>
}}}

Cell widths should also be updated when merged using the Cell -> Merge Right option."	Bug	confirmed	Normal		Core : Tables	3.1		IBM	Damian Satya Minnekanti
