1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-11 16:10:45 +03:00
Files
libxslt/tests/general/bug-168.xsl
William M. Brack 1025c148f3 added code to handle literal within an AVT #539741. tests/docs/Makefile.am
* 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
2008-06-25 07:05:52 +00:00

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>