// If the table's width is fixed, then we have to shrink or expand the
// columns to fit that additional requirement.
final RenderLength tableCWidth = table.getComputedLayoutProperties().getComputedWidth();
if (tableCWidth != RenderLength.AUTO)
{
final long tableSize = Math.max(tableCWidth.resolve(0), minimumChunkSize);
// the space we are able to distribute .. (This can be negative, if we
// have to remove space to get to the defined table size!)
// The space that is available for the content from the cells. The
// border-spacing eats some space as well (already in the pref-size-value)
final long extraSpace = tableSize - preferredSize;