} else if (context.getNamespaceHandler().isImageElement(e)) {
final String usemapAttr = context.getNamespaceHandler().getAttributeValue(e, IMG_USEMAP_ATTR);
if (isNotBlank(usemapAttr)) {
final ReplacedElement re = replaceImageMap(uac, context, e, usemapAttr, cssWidth, cssHeight);
if (context.isInteractive() && re instanceof SwingReplacedElement) {
FSCanvas canvas = context.getCanvas();
if (canvas instanceof JComponent) {
((JComponent) canvas).add(((SwingReplacedElement) re).getJComponent());
}
}
return re;