source: xslt/vendor/current/tests/general/bug-77.xsl@ 372

Last change on this file since 372 was 372, checked in by Yuri Dario, 13 years ago

xslt: initial vendor import of xslt 1.1.26.

File size: 458 bytes
Line 
1<?xml version="1.0"?> <xsl:stylesheet
2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 version="1.0">
4<!-- I have tried this with xmlns:xml="http://www.w3.org/XML/1998/namespace"
5 defined above, too
6 -->
7
8<xsl:template match="/">
9<xsl:apply-templates mode="copy"/>
10</xsl:template>
11
12<xsl:template match="@* | node()" mode="copy">
13<xsl:copy>
14<xsl:apply-templates select="node() | @*" mode="copy"/>
15</xsl:copy>
16</xsl:template>
17
18</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.