summaryrefslogtreecommitdiffstats
path: root/libxslt/tests/REC/test-5.2-18.xsl
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-19 18:25:21 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-19 18:25:21 (GMT)
commitd72feaf69933b069cff3c0cb20a5f5f03ecba77b (patch)
treebf51d2814f4be65c850dba86dc2a5db0ad38bedf /libxslt/tests/REC/test-5.2-18.xsl
parent34be72f9ed749a5c013d3f7f47d810e8caf652cb (diff)
parent49e8fbec2420ef55b3246aabd89328b13530810c (diff)
downloadblt-d72feaf69933b069cff3c0cb20a5f5f03ecba77b.zip
blt-d72feaf69933b069cff3c0cb20a5f5f03ecba77b.tar.gz
blt-d72feaf69933b069cff3c0cb20a5f5f03ecba77b.tar.bz2
Merge commit '49e8fbec2420ef55b3246aabd89328b13530810c' as 'libxslt'
Diffstat (limited to 'libxslt/tests/REC/test-5.2-18.xsl')
-rw-r--r--libxslt/tests/REC/test-5.2-18.xsl9
1 files changed, 9 insertions, 0 deletions
diff --git a/libxslt/tests/REC/test-5.2-18.xsl b/libxslt/tests/REC/test-5.2-18.xsl
new file mode 100644
index 0000000..0669e93
--- /dev/null
+++ b/libxslt/tests/REC/test-5.2-18.xsl
@@ -0,0 +1,9 @@
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:template match="/">
+<xsl:apply-templates select="/doc/para/@*"/>
+</xsl:template>
+<xsl:template match="@*">
+<xsl:text>Success</xsl:text>
+</xsl:template>
+</xsl:stylesheet>