diff options
Diffstat (limited to 'tests/REC/test-5.5-1.xsl')
-rw-r--r-- | tests/REC/test-5.5-1.xsl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/REC/test-5.5-1.xsl b/tests/REC/test-5.5-1.xsl new file mode 100644 index 00000000..7c00d92f --- /dev/null +++ b/tests/REC/test-5.5-1.xsl @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- transformation of the calloutlist element --> +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + + <xsl:template match="text()"> + </xsl:template> + + <xsl:template match="@*|node()"> + <xsl:copy> + <xsl:apply-templates/> + </xsl:copy> + </xsl:template> + +</xsl:stylesheet> |