1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-11 16:10:45 +03:00
Files
libxslt/tests/general/bug-143.xsl
Daniel Veillard 35184c8908 fixed a regression for AVT found in global variable content. added test to
* libxslt/attrvt.c libxslt/variables.c: fixed a regression for
  AVT found in global variable content.
* tests/docs/Makefile.am tests/docs/bug-143.xml
  tests/general/Makefile.am tests/docs/bug-143*: added test
  to the regression suite.
Daniel
2004-02-26 12:19:15 +00:00

11 lines
290 B
XML

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="foo">foo</xsl:variable>
<xsl:variable name="bar">
<foo bar="0{$foo}1">foo1</foo>
</xsl:variable>
<xsl:template match="/">
<xsl:copy-of select="$bar"/>
</xsl:template>
</xsl:stylesheet>