blob: 7dacc98f25c19d18e95f9a79c9708ac78faa0b20 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: selecterr13 -->
<!-- Document: http://www.w3.org/TR/xslt -->
<!-- DocVersion: 19991116 -->
<!-- Section: 8 Repetition -->
<!-- Creator: David Marston -->
<!-- Purpose: Try to use an RTF where a node-set is needed in for-each.-->
<!-- ExpectedException: XPATH: Can not convert #UNKNOWN to a NodeList -->
<!-- ExpectedException: Can not convert #RTREEFRAG to a NodeList! -->
<xsl:variable name="ResultTreeFragTest">
<xsl:value-of select="doc"/>
</xsl:variable>
<xsl:template match="/doc">
<out>
<xsl:for-each select="$ResultTreeFragTest">
<xsl:value-of select="name"/><xsl:text>,</xsl:text>
</xsl:for-each>
</out>
</xsl:template>
</xsl:stylesheet>