mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-11 16:10:45 +03:00
* libxslt/attrvt.c: added code to handle literal within an AVT #539741. * tests/docs/Makefile.am tests/docs/bug-168.xsl * tests/general/Makefile.am tests/general/bug-168.* add a test for this bug to the regression suite. svn path=/trunk/; revision=1481
10 lines
330 B
XML
10 lines
330 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<xsl:template match="*">
|
|
<A a="{concat('{',namespace-uri(),'}',local-name())}"/>
|
|
<B b='{concat("{",namespace-uri(),"}",local-name())}'/>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|