mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-20 01:21:38 +03:00
- tests/REC/test-11*: added more tests - libxslt/transform.c libxslt/variables.c: fixing bugs raised by said tests Daniel
12 lines
271 B
XML
12 lines
271 B
XML
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:fo="http://www.w3.org/1999/XSL/Format">
|
|
|
|
<xsl:variable name="n" select="2"/>
|
|
|
|
<xsl:template match="doc">
|
|
<xsl:value-of select="item[$n]"/>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|