chunks.add(new AttributedStringChunk(complexNode.getRawText(), computeStyle(node.getStyleSheet()),
node.getAttributes(), node.getStyleSheet(), node.getInstanceId(), node));
}
else if (node.getNodeType() == LayoutNodeTypes.TYPE_BOX_CONTENT)
{
final RenderableReplacedContentBox contentBox = (RenderableReplacedContentBox) node;
final long width = ReplacedContentUtil.computeWidth(contentBox);
final long height = ReplacedContentUtil.computeHeight(contentBox, 0, width);
contentBox.setCachedWidth(width);
contentBox.setCachedHeight(height);
contentBox.setWidth(width);
contentBox.setHeight(height);
chunks.add(new AttributedStringChunk("@", computeImageStyle(node.getStyleSheet(), contentBox),
node.getAttributes(), node.getStyleSheet(), node.getInstanceId(), node));
}
else if (node instanceof RenderBox)