summaryrefslogtreecommitdiff
path: root/tests/exslt/math/max.5.xsl
blob: 547e8c8c26c7d432f5b449eb7bf113270b589f23 (plain)
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/" xmlns:math="http://exslt.org/math">
    <out>
        Minimum: <minprice><xsl:value-of select="math:min(//sale/@price)"/></minprice>
        Maximum: <maxprice><xsl:value-of select="math:max(//sale/@price)"/></maxprice>
    </out>
    </xsl:template>
</xsl:stylesheet>