return false;
}
if (box instanceof TableRenderBox)
{
final TableRenderBox table = (TableRenderBox) box;
if (table.isAutoLayout())
{
// Auto-Layout means, we have to see the complete table.
// Yes, that is expensive ..
layoutFailureNodeId = box.getInstanceId();
layoutFailureResolution = BOX_MUST_BE_CLOSED;
return false;
}
// now dive deeper. Seek the first occurence of an table-body element..
boolean foundBodyGroup = false;
RenderNode node = table.getFirstChild();
while (node != null)
{
if (node instanceof TableSectionRenderBox)
{
final TableSectionRenderBox section = (TableSectionRenderBox) node;