int colSpan = m_status.getColSpan(row, cell);
int rowSpan = m_status.getRowSpan(row, cell);
// remember widget cells
if (dom.getChildCount(td) == 1) {
Object tdChild = dom.getChild(td, 0);
tdChild = dom.unwrapElement(tdChild);
WidgetInfo widget = elementToWidgetMap.get(tdChild);
if (widget != null) {
m_widgetToCells.put(widget, new Rectangle(column, row, colSpan, rowSpan));
}
}