1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-15 16:01:08 +03:00
Files
libxslt/tests/general/bug-176.xsl
Nick Wellnhofer abb7c65980 Fix system-property with unknown namespace
The empty string should be returned, see bug #631803.
2012-08-16 15:55:40 +08:00

12 lines
411 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
exclude-result-prefixes="msxsl"
version="1.0">
<xsl:template match="/">
<result>
<xsl:value-of select="system-property('msxsl:version')"/>
</result>
</xsl:template>
</xsl:transform>