blob: 9cf0383c11d0cc630be1fd014ab3db647542c446 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: COPY55-->
<!-- Document: http://www.w3.org/TR/xslt -->
<!-- DocVersion: 19991116 -->
<!-- Section: 7.5 -->
<!-- Creator: Tom Amiro -->
<!-- Purpose: Test copy-of identity transformation on XML with namespace nodes
that redefines the default and one prefixed namespace on inner element. -->
<!-- The data also has a namespace node that is re-declared exactly the same on the inner element.
This redundant declaration does not have to be copied, so it isn't. -->
<xsl:output method="xml" indent="no" encoding="UTF-8"/>
<xsl:template match="/">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>