mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-08-08 21:42:07 +03:00
* libxslt/attributes.c libxslt/xsltInternals.h libxslt/imports.c libxslt/xslt.c: fixed bug #101003 on attribute-sets value computation in the presence of imports * tests/docs/Makefile.am tests/docs/bug-102.xml tests/general/Makefile.am tests/general/bug-102*: added an example in the regression tests for this case Daniel
11 lines
282 B
XML
11 lines
282 B
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:import href="bug-102-inc.xsl"/>
|
|
|
|
<xsl:attribute-set name="foo-attribs">
|
|
<xsl:attribute name="size">+2</xsl:attribute>
|
|
</xsl:attribute-set>
|
|
|
|
</xsl:stylesheet>
|