if (blURL == null)
throw new BridgeException
(bridgeContext, e, ErrorConstants.ERR_URI_IMAGE_BROKEN,
new Object[] { url, message });
DocumentLoader loader = bridgeContext.getDocumentLoader();
SVGDocument doc = null;
try {
doc = (SVGDocument)loader.loadDocument(blURL.toString());
if (doc == null) return doc;
DOMImplementation impl;
impl = SVGDOMImplementation.getDOMImplementation();
doc = (SVGDocument)DOMUtilities.deepCloneDocument(doc, impl);