1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-15 16:01:08 +03:00
Files
libxslt/tests/general/bug-184.xsl
Nick Wellnhofer 683cbc82de Add test case for XPath function args in error case
Add the test case from Jan Pokorný to the test suite. This test is known
to fail with libxml2 2.9.1 and below but fixed in libxml2 Git.
2013-12-20 17:54:14 +01:00

9 lines
329 B
XML

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- Known to fail with libxml2 2.9.1 and below. -->
<xsl:template match="/">
<result>
<xsl:value-of select="generate-id()=generate-id(key('none', $nonexistent))"/>
</result>
</xsl:template>
</xsl:stylesheet>