summaryrefslogtreecommitdiff
path: root/tests/REC/test-7.6.1-2.xsl
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-01-31 18:28:14 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-01-31 18:28:14 +0000
commit92326d3c7d769ed98471835924cb49a288e24976 (patch)
treedc1e6055e61d242e05e6739545f9a9df0068591d /tests/REC/test-7.6.1-2.xsl
parent48705af02b28285cc4627e75beb8950b00423927 (diff)
downloadlibxslt-92326d3c7d769ed98471835924cb49a288e24976.tar.gz
libxslt-92326d3c7d769ed98471835924cb49a288e24976.tar.bz2
libxslt-92326d3c7d769ed98471835924cb49a288e24976.zip
Still stuck in the (more tests/more debug/more) fixes loop:
- tests/REC/test-[7-9]*: added more tests - libxslt/templates.c libxslt/transform.c libxslt/variables.c: fixing bugs raised by said tests, cleaned up the way ctxt->xpathctxt is allocated, overall cleanup. Daniel
Diffstat (limited to 'tests/REC/test-7.6.1-2.xsl')
-rw-r--r--tests/REC/test-7.6.1-2.xsl14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/REC/test-7.6.1-2.xsl b/tests/REC/test-7.6.1-2.xsl
new file mode 100644
index 00000000..4404557b
--- /dev/null
+++ b/tests/REC/test-7.6.1-2.xsl
@@ -0,0 +1,14 @@
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:fo="http://www.w3.org/1999/XSL/Format"
+ xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias">
+
+<xsl:template match="person">
+ <p>
+ <xsl:value-of select="given-name"/>
+ <xsl:text> </xsl:text>
+ <xsl:value-of select="family-name"/>
+ </p>
+</xsl:template>
+</xsl:stylesheet>