DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21449>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21449

With a non-zero indentation amount closing element tags are indented one level too 
deep.

           Summary: With a non-zero indentation amount closing element tags
                    are indented one level too deep.
           Product: XalanJ2
           Version: CurrentCVS
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: org.apache.xalan.serialize
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


When an indent-amount is set:
<xsl:output method="xml" indent="yes" xalan:indent-amount="1"/>
closing element tags are one level too deep with output looking like this:
<tag1>
 <tag2>
  </tag2>
 </tag1>
rather than the correct:
<tag1>
 <tag2>
 </tag2>
<tag1>

Testcase is propertyIndent01.xsl/propertyIndent01.xml

Reply via email to