Hi Emzic, emzic <[EMAIL PROTECTED]> wrote on 07/15/2008 08:27:42 AM:
> when i try to clone a the root-node from an svg file (SVGOMDocument) i get > the following exception: > > org.w3c.dom.DOMException: Cannot import node. I see you found another solution to your problem. The issue here is that you can't import a Document node into another Document. An DOM Document can only ever have one Document node. Your work around clones the document with the same DOM implementation but they are separate DOM documents.
