GNOME Bugzilla – Bug 130513
wrining with xmlTextWriterSetIndent wrongly adds indent before end elements
Last modified: 2005-08-15 01:27:48 UTC
I'd have expected xmlTextWriter's output with xmlTextWriterSetIndent to be the same as the tree api's output with xmlIndentTreeOutput = 1, but that isn't the case. Consider the output of the attached testcase: Output of tree api: <?xml version="1.0"?> <root> <element>TEST</element> </root> Output of xmlWriter api: <?xml version="1.0"?> <root> <element>TEST </element> </root> Note the extra whitespace after "TEST".
Created attachment 22904 [details] testcase
Marking severity as minor.
That should be fixed in CVS now, can you check ? thanks, Daniel
Yes, it works now as expected. Thanks!