blob: 23fa6dff68f15caa02f5b8e9ea9b39fadefcb6a9 [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: PREDICATE21 -->
<!-- Document: http://www.w3.org/TR/xpath -->
<!-- DocVersion: 19991116 -->
<!-- Section: 3.4 -->
<!-- Creator: David Marston -->
<!-- Purpose: Test of implied conversion of node-set to string on != predicate. -->
<xsl:template match="doc">
<out>
<xsl:for-each select="a['target'!=descendant::*]">
<!-- True only when the node has descendants, but none containing "target". -->
<xsl:value-of select="."/>
</xsl:for-each>
</out>
</xsl:template>
</xsl:stylesheet>