summaryrefslogtreecommitdiffstats
path: root/libxslt/tests/REC/test-5.4-3.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'libxslt/tests/REC/test-5.4-3.xsl')
-rw-r--r--libxslt/tests/REC/test-5.4-3.xsl16
1 files changed, 16 insertions, 0 deletions
diff --git a/libxslt/tests/REC/test-5.4-3.xsl b/libxslt/tests/REC/test-5.4-3.xsl
new file mode 100644
index 0000000..c367a82
--- /dev/null
+++ b/libxslt/tests/REC/test-5.4-3.xsl
@@ -0,0 +1,16 @@
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:fo="http://www.w3.org/1999/XSL/Format">
+<xsl:template match="doc">
+<doc>
+ <xsl:apply-templates/>
+</doc>
+</xsl:template>
+
+<xsl:template match="author-group">
+ <fo:inline-sequence>
+ <xsl:apply-templates select="author/given-name"/>
+ </fo:inline-sequence>
+</xsl:template>
+
+</xsl:stylesheet>