mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-17 03:22:14 +03:00
* libxslt/transform.c: fixing bug #111755 when a template is applied to an attribute * tests/docs/Makefile.am tests/docs/bug-119.* tests/general/Makefile.am tests/general/bug-119*: added the example in the regression tests for that bug. Daniel
13 lines
299 B
XML
13 lines
299 B
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates select="*" />
|
|
</xsl:template>
|
|
|
|
<xsl:template match="@match">
|
|
NAME <xsl:value-of select="name(.)" />
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|
|
|