}
// If the device does not support align attribute of td, but does
// support an alternative, then add a transformer to translate.
if (!supportsTableCellAlign && supportsCenterElement) {
TableCellAligningTransformer tableCellAlignTransformer =
new TableCellAligningTransformer();
if (transformer != null) {
transformer = new CompoundTransformer(transformer,
tableCellAlignTransformer);
} else {
transformer = tableCellAlignTransformer;