mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-14 05:09:26 +03:00
problem in xsl:copy-of in case of attributes - tests/docs/Makefile.am tests/docs/bug-3-.xml tests/general/Makefile.am tests/general/bug-3-.*: added the test to the general regression suite Daniel
14 lines
234 B
XML
14 lines
234 B
XML
<xsl:stylesheet
|
|
version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:template match="*">
|
|
<xsl:copy>
|
|
<xsl:copy-of select="@*"/>
|
|
<xsl:apply-templates/>
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|
|
|