1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-15 16:01:08 +03:00
Files
libxslt/tests/general/bug-64.xsl
2001-10-06 11:02:41 +00:00

9 lines
296 B
XML

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()" priority="1">
<xsl:text>It is broken!</xsl:text>
</xsl:template>
<xsl:template match="/" priority="2">
<xsl:text>It works!</xsl:text>
</xsl:template>
</xsl:stylesheet>