mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-11 16:10:45 +03:00
* 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
11 lines
290 B
XML
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>
|