summaryrefslogtreecommitdiff
path: root/tests/general/bug-15-.xsl
blob: 845866e883a7030165a4156573920508b6db38de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version = "1.0" encoding = "UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match='doc'>
<html>
<body>
<ul>
    <xsl:for-each select='items'>
    <xsl:sort/>
    <li><xsl:value-of select='.'/></li>
    </xsl:for-each>
</ul>
</body>
</html>
</xsl:template>
</xsl:stylesheet>