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=3686>.
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=3686

           Summary: xsltc fails conf test whitespace13
           Product: XalanJ2
           Version: 2.0.0
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: org.apache.xalan.xsltc
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Running saxon on whitespace13
<?xml version="1.0" encoding="utf-8"?><out> test </out>

Running xt on whitespace13
<?xml version="1.0" encoding="utf-8"?>
<out> test </out>

Running xalan on whitespace13
<?xml version="1.0" encoding="UTF-8"?>
<out> test </out>


Running XSLTC with Xerces Parser on whitespace13
<?xml version="1.0" encoding="utf-8" ?>
<out>test</out>

 cat whitespace13.xsl
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">

  <!-- FileName: whitespace13 -->
  <!-- Document: http://www.w3.org/TR/xslt -->
  <!-- DocVersion: 19991116 -->
  <!-- Section: 3.4 -->
  <!-- Creator: Paul Dick -->
  <!-- Purpose: Test default whitespace handling where both source and template
have space. -->

<xsl:template match="/">
  <out> <![CDATA[test]]> </out>
</xsl:template>

</xsl:stylesheet>

 cat whitespace13.xml
<?xml version="1.0"?> 
<doc>
  <foo>a</foo>
</doc>

Reply via email to