mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-15 16:01:08 +03:00
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.
9 lines
329 B
XML
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>
|