The program finishes without problems. But the generated file misses the "xmlns:xlink=..." attribute and this causes an error when trying to open the file with Firefox or another browser.
On Other hand, an Execution error is raised if the line 20 is uncommented (setAttributeNS) and the lines 21, 22 and 23 are commented.
Mantis conversion info:
Mantis ID: 22299
OS: Linux
OS Build: Ubuntu 11.04
Build: 2012/02/12
Platform: x86-64
Version: 2.6.1
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
You are creating ScriptNode using CreateElement method, which creates an element without namespace. The specification says that such documents must fail to serialize (however it doesn't say anything about behavior of DOM). The only bug in fcl-xml is that this isn't properly checked.
Using CreateElementNS yields the necessary result:
Both are valid XML files, but the First is a much more compact form.
At The specification[1] you can find:
"As far as the DOM is concerned, special attributes used for declaring XML namespaces are still exposed and can be manipulated just like any other attribute."
Is this true to fcl-xml ? I have tried and was not possible find the declarative nodes(example: xmlns:xlink="http...") using GetAtrribute/GetAtrributeNS.
Examinating the DOM code, it seems to just store references to nsPrefix and nsURI, it doesnt really create attribute nodes. So is not possible to move the attribute xmlns:xlink="http://www.w3.org/1999/xlink" to the svg node.
The ReadXmlWithNamespaces.pas shows that the TDOMParser class when is reading a "compact" XML (as mentioned at the prior comment) with namespaces actually create attributes nodes contrary to dom behaviour.
DOM doesn't create additional attributes automatically, the namespace fixup only happens when writing the document out (it is rather complex process which may also change prefixes of attributes in case of conflicting namespaces).
I keep it open because I want to add the check for non-namespaced elements during serialization. It is trivial but requires extensive testing for possible side effects.